You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
404 B
11 lines
404 B
CREATE TABLE `oauth_accounts` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`user_id` integer NOT NULL,
|
|
`provider` text NOT NULL,
|
|
`provider_user_id` text NOT NULL,
|
|
`username` text,
|
|
`email` text,
|
|
`avatar` text,
|
|
`created_at` integer DEFAULT (cast((julianday('now') - 2440587.5)*86400000 as integer)),
|
|
`updated_at` integer DEFAULT (cast((julianday('now') - 2440587.5)*86400000 as integer))
|
|
);
|
|
|