mirror of https://gitlab.com/litecord/litecord.git
schema.sql: sync guild.description, guild.banner
This commit is contained in:
parent
39a35b6af9
commit
86c9c02e46
|
|
@ -389,7 +389,11 @@ CREATE TABLE IF NOT EXISTS guilds (
|
||||||
widget_enabled boolean DEFAULT false,
|
widget_enabled boolean DEFAULT false,
|
||||||
widget_channel_id bigint REFERENCES channels (id) DEFAULT NULL,
|
widget_channel_id bigint REFERENCES channels (id) DEFAULT NULL,
|
||||||
|
|
||||||
system_channel_id bigint REFERENCES channels (id) DEFAULT NULL
|
system_channel_id bigint REFERENCES channels (id) DEFAULT NULL,
|
||||||
|
|
||||||
|
-- only for guilds with certain features
|
||||||
|
description text DEFAULT NULL,
|
||||||
|
banner text DEFAULT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue