12 lines
327 B
SQL
12 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`)
|
|
);
|