Skip to content

Commit

Permalink
switching keywords to text type
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwalker-usgs committed Feb 28, 2014
1 parent baf6625 commit 7fad034
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions coastal-hazards-liquibase/src/main/liquibase/changeLog.xml
Expand Up @@ -23,4 +23,5 @@
<include file="subtreeFunction.xml" relativeToChangelogFile="true" /> <include file="subtreeFunction.xml" relativeToChangelogFile="true" />
<include file="itemUpdates.xml" relativeToChangelogFile="true" /> <include file="itemUpdates.xml" relativeToChangelogFile="true" />
<include file="bbox.xml" relativeToChangelogFile="true" /> <include file="bbox.xml" relativeToChangelogFile="true" />
<include file="keywordToText.xml" relativeToChangelogFile="true" />
</databaseChangeLog> </databaseChangeLog>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd">
<changeSet author="jiwalker" id="change_keyword_column_to_text">
<modifyDataType tableName="summary" columnName="keywords" newDataType="text" />
</changeSet>
</databaseChangeLog>

0 comments on commit 7fad034

Please sign in to comment.