schema.sql: sync guild.description, guild.banner

This commit is contained in:
Luna 2019-03-27 00:08:29 -03:00
parent 39a35b6af9
commit 86c9c02e46
1 changed files with 5 additions and 1 deletions

View File

@ -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
); );