Skip to content

Commit 0b4b9ec

Browse files
committed
SB-1475: simplify changeset
1 parent 0c42fb4 commit 0b4b9ec

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

strongbox-db-liquibase/src/main/resources/db/changelog/v1.0.0/v1.0.0.21__ArtifactEntry.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66

77
<changeSet id="v1.0.0.21" author="strongbox-dev@carlspring.com">
88

9-
<o:changePropertyTypeDateToDatetime propertyName="created" className="ArtifactEntry"/>
9+
<o:dropProperty className="ArtifactEntry" propertyName="created"/>
10+
<o:createProperty className="ArtifactEntry" name="created" type="datetime"/>
1011

11-
<o:changePropertyTypeDateToDatetime propertyName="lastUpdated" className="ArtifactEntry"/>
12-
13-
<o:changePropertyTypeDateToDatetime propertyName="lastUsed" className="ArtifactEntry"/>
12+
<o:dropProperty className="ArtifactEntry" propertyName="lastUsed"/>
13+
<o:createProperty className="ArtifactEntry" name="lastUsed" type="datetime"/>
1414

15+
<o:dropProperty className="ArtifactEntry" propertyName="lastUpdated"/>
16+
<o:createProperty className="ArtifactEntry" name="lastUpdated" type="datetime"/>
1517
</changeSet>
1618

1719
</databaseChangeLog>

0 commit comments

Comments
 (0)