migration.sql 327 B

1234567891011
  1. CREATE TABLE `control_account` (
  2. `email` text NOT NULL,
  3. `url` text NOT NULL,
  4. `access_token` text NOT NULL,
  5. `refresh_token` text NOT NULL,
  6. `token_expiry` integer,
  7. `active` integer NOT NULL,
  8. `time_created` integer NOT NULL,
  9. `time_updated` integer NOT NULL,
  10. CONSTRAINT `control_account_pk` PRIMARY KEY(`email`, `url`)
  11. );