mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-21 07:49:34 +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';
|