Skip to content

Commit

Permalink
Update 0055_podcasts_flag_status.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdowney committed Apr 17, 2024
1 parent 217f491 commit 402092a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/0055_podcasts_flag_status.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE TYPE flag_status AS ENUM ('none', 'spam', 'takedown', 'other', 'always-allow');
CREATE TYPE flag_status_enum AS ENUM ('none', 'spam', 'takedown', 'other', 'always-allow');

ALTER TABLE podcasts
ADD COLUMN flag_status flag_status DEFAULT 'none';
ADD COLUMN flag_status flag_status_enum DEFAULT 'none';

0 comments on commit 402092a

Please sign in to comment.