mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-25 14:25:45 +01:00
6 lines
392 B
MySQL
6 lines
392 B
MySQL
|
# 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';
|