rewrite sql to LiquibaseMigration

This commit is contained in:
nazoking
2017-01-15 04:11:14 +09:00
parent 8515ef5b26
commit 53537eaa09
3 changed files with 7 additions and 2 deletions

View File

@@ -1 +0,0 @@
ALTER TABLE ACCOUNT ADD COLUMN GROUP_DESCRIPTION TEXT;

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<changeSet>
<addColumn tableName="ACCOUNT">
<column name="GROUP_DESCRIPTION" type="text" nullable="true" />
</addColumn>
</changeSet>

View File

@@ -26,6 +26,6 @@ object GitBucketCoreModule extends Module("gitbucket-core",
new Version("4.7.1"),
new Version("4.8"),
new Version("4.9",
new SqlMigration("update/gitbucket-core_4.9.sql")
new LiquibaseMigration("update/gitbucket-core_4.9.xml")
)
)