File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 5
5
xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
6
6
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd" >
7
7
8
-
8
+ < include file = " 0.4.4/2020-05-02--hidden_series_images.xml " relativeToChangelogFile = " true " />
9
9
10
10
</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.1.xsd" >
7
+
8
+ <changeSet id =" add-hidden-field-to-series_images" author =" php-coder" context =" scheme" >
9
+
10
+ <addColumn tableName =" series_images" >
11
+ <column name =" hidden" type =" BOOLEAN" defaultValueBoolean =" false" >
12
+ <constraints nullable =" false" />
13
+ </column >
14
+ </addColumn >
15
+
16
+ </changeSet >
17
+
18
+ </databaseChangeLog >
Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ INSERT \
3
3
INTO series_images \
4
4
( series_id \
5
5
, image_id \
6
+ , hidden \
6
7
) \
7
8
VALUES \
8
9
( :series_id \
9
10
, :image_id \
11
+ , FALSE \
10
12
)
11
13
12
14
series_image.find_by_series_id = \
You can’t perform that action at this time.
0 commit comments