14 lines
346 B
SQL
14 lines
346 B
SQL
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
|
|
);
|