Semaphore/db/migrations/v1.6.0.sql
Matej Kramny b4cab16fda Improved UI
- Fixes #94
- Fixes admin permissions (needed to manipulate users)
2016-06-17 13:16:46 -07:00

6 lines
392 B
SQL

# add deleted column
alter table project__environment add `removed` tinyint(1) default 0 comment 'marks as deleted';
alter table project__inventory add `removed` tinyint(1) default 0 comment 'marks as deleted';
alter table project__repository add `removed` tinyint(1) default 0 comment 'marks as deleted';
alter table access_key add `removed` tinyint(1) default 0 comment 'marks as deleted';