feat: add better auth sqlite runtime and server-side session flow
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE `runtime_checks` (
|
||||
`key` text PRIMARY KEY NOT NULL,
|
||||
`value` text NOT NULL,
|
||||
`created_at` integer NOT NULL,
|
||||
`updated_at` integer NOT NULL
|
||||
);
|
||||
--> statement-breakpoint
|
||||
CREATE TABLE `runtime_events` (
|
||||
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
`type` text NOT NULL,
|
||||
`message` text NOT NULL,
|
||||
`created_at` integer NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user