freechat/json-api/migrations/2021-05-04-200859_neighbors/up.sql
shockrah 36dbc8dd1e + 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
2021-05-17 15:50:53 -07:00

11 lines
346 B
SQL

-- everything else is nullable due to
-- A) Flexibility
-- B) They're part of optional features(such as the wsurl which not all servers may have)
CREATE TABLE IF NOT EXISTS `neighbors`(
`url` VARCHAR(512) UNIQUE NOT NULL,
`wsurl` VARCHAR(512),
`name` VARCHAR(512) NOT NULL,
`description` VARCHAR(1024),
`tags` VARCHAR(1024) DEFAULT '[]'
);