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

7 lines
284 B
MySQL
Raw Normal View History

2023-10-04 15:42:03 +00:00
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;