Skip to content

Commit 0723cb2

Browse files
authored
Merge pull request #17 from strongbox/issue/SB-1423
SB-1423: UserEntry.lastUpdate fixed
2 parents d67e007 + f6cd27a commit 0723cb2

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@
2525
<include file="v1.0.0.19__ArtifactEntry.xml" relativeToChangelogFile="true"/>
2626
<include file="v1.0.0.20__User.xml" relativeToChangelogFile="true"/>
2727
<include file="v1.0.0.21__ArtifactEntry.xml" relativeToChangelogFile="true"/>
28+
<include file="v1.0.0.22__UserEntry.xml" relativeToChangelogFile="true"/>
2829

2930
</databaseChangeLog>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.22" author="strongbox-dev@carlspring.com">
8+
9+
<o:dropProperty className="UserEntry" propertyName="lastUpdate"/>
10+
<o:createProperty className="UserEntry" name="lastUpdate" type="datetime"/>
11+
12+
</changeSet>
13+
14+
</databaseChangeLog>
15+

0 commit comments

Comments
 (0)