File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
strongbox-db-liquibase/src/main/resources/db/changelog/v1.0.0 Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 24
24
<include file =" v1.0.0.18__ArtifactGroup.xml" relativeToChangelogFile =" true" />
25
25
<include file =" v1.0.0.19__ArtifactEntry.xml" relativeToChangelogFile =" true" />
26
26
<include file =" v1.0.0.20__User.xml" relativeToChangelogFile =" true" />
27
+ <include file =" v1.0.0.21__ArtifactEntry.xml" relativeToChangelogFile =" true" />
27
28
28
29
</databaseChangeLog >
Original file line number Diff line number Diff line change
1
+ <databaseChangeLog xmlns =" http://www.liquibase.org/xml/ns/dbchangelog"
2
+ xmlns : o =" http://www.unbroken-dome.org/schema/liquibase-orientdb"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://www.liquibase.org/xml/ns/dbchangelog
5
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.2.xsd" >
6
+
7
+ <changeSet id =" v1.0.0.21" author =" strongbox-dev@carlspring.com" >
8
+ <!-- <sql>
9
+ update ArtifactEntry set createdTemp = created.asDatetime();
10
+ drop property ArtifactEntry.created;
11
+ update ArtifactEntry remove created;
12
+ update ArtifactEntry set created = createdTemp;
13
+ update ArtifactEntry remove createdTemp;
14
+ create property ArtifactEntry.created datetime;
15
+ </sql>-->
16
+
17
+ <o : changePropertyTypeDateToDatetime propertyName =" created" className =" ArtifactEntry" />
18
+ </changeSet >
19
+
20
+ </databaseChangeLog >
21
+
You can’t perform that action at this time.
0 commit comments