]> Untitled Git - lemmy.git/commitdiff
In remove categories down migration, add default for category
authorFelix Ableitner <me@nutomic.com>
Thu, 25 Feb 2021 15:16:02 +0000 (16:16 +0100)
committerFelix Ableitner <me@nutomic.com>
Thu, 25 Feb 2021 15:16:02 +0000 (16:16 +0100)
migrations/2021-02-25-112959_remove-categories/down.sql

index 9f1837b42f951758e51c295cad4cfe64a2b84875..35386f795579af845fca9c52394cfda09a35096d 100644 (file)
@@ -31,4 +31,4 @@ insert into category (name) values
 ('Meta'),
 ('Other');
 
-ALTER TABLE community ADD category_id int references category on update cascade on delete cascade not null;
\ No newline at end of file
+ALTER TABLE community ADD category_id int references category on update cascade on delete cascade not null default 1;
\ No newline at end of file