Skip to content

Commit 5648a0b

Browse files
committed
task: add condition field to series_sales table.
Part of #1326
1 parent 01dca27 commit 5648a0b

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
77

88
<include file="0.4.4/2020-05-02--hidden_series_images.xml" relativeToChangelogFile="true" />
9+
<include file="0.4.4/2020-05-04--series_sale_condition.xml" relativeToChangelogFile="true" />
910

1011
</databaseChangeLog>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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.1.xsd">
7+
8+
<changeSet id="add-condition-field-to-series_sales" author="php-coder" context="scheme">
9+
10+
<addColumn tableName="series_sales">
11+
<column name="condition"
12+
type="VARCHAR(4)"
13+
afterColumn="transaction_url"
14+
remarks="Most used values: USED, MNH, CTO" />
15+
</addColumn>
16+
17+
</changeSet>
18+
19+
</databaseChangeLog>

0 commit comments

Comments
 (0)