open-bounty/resources/migrations/20171226182259-hide-user.up.sql
2017-12-26 18:25:29 +03:00

7 lines
92 B
PL/PgSQL

begin;
alter table users
add column is_hidden boolean not null default false;
commit;