Skip to content

Commit 2e23e6e

Browse files
committed
Update reserved extension in the DB
1 parent 427fe8d commit 2e23e6e

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
insert into ui.file_extension_content_type values ('.aerie', 'Metadata'::ui.supported_content_types);
2+
delete from ui.file_extension_content_type where file_extension == '.meta.seqdev';
3+
4+
call migrations.mark_migration_rolled_back(31);
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
insert into ui.file_extension_content_type values ('.meta.seqdev', 'Metadata'::ui.supported_content_types);
2+
delete from ui.file_extension_content_type where file_extension == '.aerie';
3+
4+
call migrations.mark_migration_applied(31);

deployment/postgres-init-db/sql/tables/ui/file_extension_content_type.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ insert into ui.file_extension_content_type(file_extension, content_type)
1414
values ('.txt', 'Text'),
1515
('.bin', 'Binary'),
1616
('.json', 'JSON'),
17-
('.aerie', 'Metadata'),
17+
('.meta.seqdev', 'Metadata'),
1818
('.seq', 'Sequence'),
1919
('.seqN.txt', 'Sequence'),
2020
('.seq.json', 'JSON'),

0 commit comments

Comments
 (0)