Co-authored-by: Github Action <action@github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev>
11 lines
327 B
SQL
11 lines
327 B
SQL
CREATE TABLE `control_account` (
|
|
`email` text NOT NULL,
|
|
`url` text NOT NULL,
|
|
`access_token` text NOT NULL,
|
|
`refresh_token` text NOT NULL,
|
|
`token_expiry` integer,
|
|
`active` integer NOT NULL,
|
|
`time_created` integer NOT NULL,
|
|
`time_updated` integer NOT NULL,
|
|
CONSTRAINT `control_account_pk` PRIMARY KEY(`email`, `url`)
|
|
);
|