mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-25 14:25:45 +01:00
b4cab16fda
- Fixes #94 - Fixes admin permissions (needed to manipulate users)
6 lines
392 B
SQL
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'; |