dex/db/migrations/0008_users_active_or_inactive.sql
2015-09-25 14:25:06 -07:00

5 lines
110 B
SQL

-- +migrate Up
ALTER TABLE authd_user ADD COLUMN disabled boolean;
UPDATE authd_user SET "disabled" = FALSE;