We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d25ed6 commit 48a6992Copy full SHA for 48a6992
db/sql/migrations/v2.16.0.sql
@@ -2,3 +2,5 @@ alter table `access_key` add `owner` varchar(20) default '' not null;
2
alter table `access_key` add `plain` text;
3
update access_key set `owner` = 'variable' where environment_id is not null and name like 'var.%';
4
update access_key set `owner` = 'environment' where environment_id is not null and name like 'env.%';
5
+alter table `access_key` add `source_type` varchar(20) default '' not null;
6
+alter table `access_key` add `source_path` varchar(1000);
0 commit comments