mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-25 15:24:58 +00:00
12 lines
269 B
SQL
12 lines
269 B
SQL
CREATE TABLE `account` (
|
|
`id` text PRIMARY KEY,
|
|
`email` text NOT NULL,
|
|
`url` text NOT NULL,
|
|
`access_token` text NOT NULL,
|
|
`refresh_token` text NOT NULL,
|
|
`token_expiry` integer,
|
|
`org_id` text,
|
|
`time_created` integer NOT NULL,
|
|
`time_updated` integer NOT NULL
|
|
);
|