File tree 2 files changed +18
-0
lines changed
src/main/resources/liquibase/version
2 files changed +18
-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.6/2021-01-30--series_comments.xml" relativeToChangelogFile =" true" />
9
+ <include file =" 0.4.6/2021-01-31--make-comment-field-non-nullable.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-3.9.xsd" >
7
+
8
+ <changeSet id =" make-series_comments-comment-non_nullable" author =" php-coder" context =" scheme" >
9
+
10
+ <addNotNullConstraint
11
+ tableName=" series_comments"
12
+ columnName=" comment"
13
+ columnDataType=" VARCHAR(1024)" />
14
+
15
+ </changeSet >
16
+
17
+ </databaseChangeLog >
You can’t perform that action at this time.
0 commit comments