Remove categories (fixes #1429) #176
Merged
dessalines
merged 2 commits from remove-categories
into main
3 months ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'remove-categories'
Deleting a branch is permanent. It CANNOT be undone. Continue?
This is a breaking change. We also need to update the docs, api docs and javascript client.
('Meta'),
('Other');
ALTER TABLE community ADD category_id int references category on update cascade on delete cascade not null;
Did you test this? I'd be surprised if it works since there's not a default value given (should probably be just 1). Its unavoidable but we lose all category info on the tables with this.
I did (with diesel migration revert/run), but maybe I tested it wrong. Will add the default you suggested.
mmk, I'll test this locally too.
7c87da012e
.