chat.sad.ovh/drizzle/0008_mute_lilandra.sql
2026-01-04 20:26:42 +02:00

9 lines
No EOL
345 B
SQL

CREATE TABLE `directMessage` (
`id` text PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`server_id` text NOT NULL,
`messages` text DEFAULT '[]' NOT NULL,
FOREIGN KEY (`server_id`) REFERENCES `server`(`id`) ON UPDATE no action ON DELETE no action
);
--> statement-breakpoint
ALTER TABLE `user` ADD `status_overwrite` integer DEFAULT 3 NOT NULL;