File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
src/main/resources/liquibase/version Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 6
6
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd" >
7
7
8
8
<include file =" 0.4.7/2021-07-18--series_import_parsed_image_urls.xml" relativeToChangelogFile =" true" />
9
+ <include file =" 0.4.7/2021-11-28--series_and_nullable_perforated_field.xml" relativeToChangelogFile =" true" />
9
10
10
11
</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-4.3.xsd" >
7
+
8
+ <changeSet id =" make-series-perforated-field-nullable" author =" php-coder" context =" scheme" >
9
+
10
+ <dropNotNullConstraint
11
+ tableName=" series"
12
+ columnName=" perforated"
13
+ columnDataType=" BOOLEAN"
14
+ />
15
+
16
+ <setColumnRemarks
17
+ tableName=" series"
18
+ columnName=" perforated"
19
+ columnDataType=" BOOLEAN"
20
+ remarks=" NULL means a series contains both types of stamps: perforated and imperforated"
21
+ />
22
+
23
+ </changeSet >
24
+
25
+ </databaseChangeLog >
You can’t perform that action at this time.
0 commit comments