Skip to content

Commit 25df91c

Browse files
committed
Scott catalog number can be 5 characters long.
Fix #676
1 parent 98ca3be commit 25df91c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/main/resources/liquibase/version/0.4.xml

+1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@
2929
<include file="0.4/2017-05-11--image_preview.xml" relativeToChangelogFile="true" />
3030
<include file="0.4/2017-05-29--test_image.xml" relativeToChangelogFile="true" />
3131
<include file="0.4/2017-10-23--image_filename.xml" relativeToChangelogFile="true" />
32+
<include file="0.4/2017-10-30--scott_code_length.xml" relativeToChangelogFile="true" />
3233

3334
</databaseChangeLog>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<databaseChangeLog
3+
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
6+
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd">
7+
8+
<changeSet id="modify-scott_catalog-code-type" author="php-coder" context="scheme">
9+
<modifyDataType tableName="scott_catalog" columnName="code" newDataType="VARCHAR(5)" />
10+
</changeSet>
11+
12+
</databaseChangeLog>

0 commit comments

Comments
 (0)