9 lines
292 B
SQL
9 lines
292 B
SQL
CREATE TABLE `pending_oauth_links` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`user_id` integer NOT NULL,
|
|
`provider` text NOT NULL,
|
|
`created_at` text NOT NULL,
|
|
`expires_at` text NOT NULL,
|
|
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
|
|
);
|