mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
4 lines
317 B
SQL
4 lines
317 B
SQL
alter table `project__template_vault` change `vault_key_id` `vault_key_id` int;
|
|
alter table `project__template_vault` add `type` varchar(20) not null default 'password';
|
|
alter table `project__template_vault` add `script` text;
|
|
update `project__template_vault` set `type` = 'password' where `vault_key_id` IS NOT NULL; |