This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/db/migrations/0002_dex_admin.sql

5 lines
126 B
MySQL
Raw Normal View History

2015-08-20 04:10:36 +05:30
-- +migrate Up
ALTER TABLE client_identity ADD COLUMN "dex_admin" boolean;
UPDATE "client_identity" SET "dex_admin" = false;