+ Badges introduction to database schemas

+ Adding some default empty list values where applicable
neighbors now has a default value of '[]' to enforce the "empty list" constraint on that field
This commit is contained in:
shockrah
2021-05-17 15:50:53 -07:00
parent e5e0875037
commit 36dbc8dd1e
5 changed files with 12 additions and 1 deletions

View File

@@ -4,5 +4,6 @@ CREATE TABLE IF NOT EXISTS `channels` (
`name` VARCHAR(255) NOT NULL,
`description` VARCHAR(2048),
`kind` INTEGER NOT NULL,
`badges` VARCHAR(2048) DEFAULT '[]',
PRIMARY KEY(`id`), UNIQUE KEY(`name`)
);