Implement most of status system (still kinda bootycheeks at checking if
you're connected), fionally fix prettierrc
This commit is contained in:
parent
126acf52f3
commit
e64910d895
29 changed files with 2001 additions and 879 deletions
9
drizzle/0008_mute_lilandra.sql
Normal file
9
drizzle/0008_mute_lilandra.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue