aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/V1.39__tags_noindex.sql
blob: af37bc66ccc8d949a99a1f93e1bbf6c09b60e75b (plain) (blame)
1
2
3
4
5
6
7
alter table tags alter noindex set default null;
alter table tags alter noindex type INTEGER USING CASE WHEN noindex THEN 1 ELSE 0 END;
alter table tags alter noindex set default 0;
alter table tags alter top set default null;
alter table tags alter top type INTEGER USING CASE WHEN top THEN 1 ELSE 0 END;
alter table tags alter top set default 0;
alter table tags rename top to notop