11 lines
232 B
SQL
11 lines
232 B
SQL
CREATE TABLE `challenges` (
|
|
`token` text PRIMARY KEY NOT NULL,
|
|
`data` text NOT NULL,
|
|
`expires` integer NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE TABLE `tokens` (
|
|
`key` text PRIMARY KEY NOT NULL,
|
|
`expires` integer NOT NULL
|
|
);
|