diff --git a/schema.sql b/schema.sql index a3cb29a..4c0941f 100644 --- a/schema.sql +++ b/schema.sql @@ -389,7 +389,11 @@ CREATE TABLE IF NOT EXISTS guilds ( widget_enabled boolean DEFAULT false, 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 );