File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
src/main/resources/liquibase/version Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 31
31
<include file =" 0.4/2017-10-23--image_filename.xml" relativeToChangelogFile =" true" />
32
32
<include file =" 0.4/2017-10-30--scott_code_length.xml" relativeToChangelogFile =" true" />
33
33
<include file =" 0.4/2017-10-31--series_sales_null_second_currency.xml" relativeToChangelogFile =" true" />
34
+ <include file =" 0.4/2017-10-31--non_nullable_catalog_codes.xml" relativeToChangelogFile =" true" />
34
35
35
36
</databaseChangeLog >
Original file line number Diff line number Diff line change
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 =" make-michel_catalog-code-non_nullable" author =" php-coder" context =" scheme" >
9
+ <addNotNullConstraint
10
+ tableName=" michel_catalog"
11
+ columnName=" code"
12
+ columnDataType=" VARCHAR(4)" />
13
+ </changeSet >
14
+
15
+ <changeSet id =" make-scott_catalog-code-non_nullable" author =" php-coder" context =" scheme" >
16
+ <addNotNullConstraint
17
+ tableName=" scott_catalog"
18
+ columnName=" code"
19
+ columnDataType=" VARCHAR(5)" />
20
+ </changeSet >
21
+
22
+ <changeSet id =" make-yvert_catalog-code-non_nullable" author =" php-coder" context =" scheme" >
23
+ <addNotNullConstraint
24
+ tableName=" yvert_catalog"
25
+ columnName=" code"
26
+ columnDataType=" VARCHAR(4)" />
27
+ </changeSet >
28
+
29
+ <changeSet id =" make-gibbons_catalog-code-non_nullable" author =" php-coder" context =" scheme" >
30
+ <addNotNullConstraint
31
+ tableName=" gibbons_catalog"
32
+ columnName=" code"
33
+ columnDataType=" VARCHAR(4)" />
34
+ </changeSet >
35
+
36
+ </databaseChangeLog >
You can’t perform that action at this time.
0 commit comments