dex/db/migrations/0008_users_active_or_inactive.sql

5 lines
110 B
MySQL
Raw Normal View History

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