Skip to content

Commit 7e1b946

Browse files
authored
fixed error creating dataset (#1573)
1 parent facdd6b commit 7e1b946

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

liquibase/changelog.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,6 @@
102102
<include file="materialized_views/materialized_views.xml" relativeToChangelogFile="true"/>
103103
<!-- Remove filename as the primary key on databasechangelog table and add composite(id, author, filename) -->
104104
<include file="changes/update_liquibase_changelog.sql" relativeToChangelogFile="true"/>
105+
<!-- Change gtfsfile table hosted_url column type to text to accomodate longer URLs. -->
106+
<include file="changes/feat_1542.sql" relativeToChangelogFile="true"/>
105107
</databaseChangeLog>

liquibase/changes/feat_1542.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE gtfsfile ALTER COLUMN hosted_url TYPE text;

0 commit comments

Comments
 (0)