open-bounty/resources/migrations/20171226182259-hide-user.up.sql

7 lines
92 B
MySQL
Raw Normal View History

2017-12-26 18:25:29 +03:00
begin;
alter table users
add column is_hidden boolean not null default false;
commit;