Skip to content

Commit 858080b

Browse files
committed
fix(migration): remove extra columns
1 parent 6da7d0f commit 858080b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

db/sql/migrations/v2.16.0.sql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
alter table `access_key` add `owner` varchar(20) default '' not null;
22
alter table `access_key` add `plain` text;
33
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);
4+
update access_key set `owner` = 'environment' where environment_id is not null and name like 'env.%';

0 commit comments

Comments
 (0)