rDrama/migrations/20231004-add-king-award.sql

7 lines
284 B
SQL

alter table users add column king integer;
alter table posts add column golden bool not null default false;
alter table posts alter column golden drop default;
alter table comments add column golden bool not null default false;
alter table comments alter column golden drop default;