lemmy/migrations/2024-01-22-105746_lemmynsfw.../up.sql

10 lines
268 B
MySQL
Raw Normal View History

2024-01-23 10:58:04 +00:00
ALTER TABLE local_site
ADD COLUMN content_warning text;
2024-01-23 11:20:15 +00:00
ALTER TABLE local_site
ADD COLUMN default_post_listing_mode post_listing_mode_enum NOT NULL DEFAULT 'List';
2024-01-23 11:20:15 +00:00
2024-01-23 10:58:04 +00:00
ALTER TABLE community
ADD COLUMN only_followers_can_vote boolean NOT NULL DEFAULT FALSE;