File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed
strongbox-db-liquibase/src/main/resources/db/changelog/v1.0.0 Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 10
10
</parent >
11
11
12
12
<artifactId >strongbox-db</artifactId >
13
- <version >1.0-SNAPSHOT</version >
14
13
<packaging >pom</packaging >
15
-
14
+ <version >1.0-SNAPSHOT</version >
15
+
16
16
<properties >
17
17
<serverId />
18
18
<deployUrl />
Original file line number Diff line number Diff line change 13
13
</parent >
14
14
15
15
<artifactId >strongbox-db-import</artifactId >
16
-
17
16
<inceptionYear >2019</inceptionYear >
18
17
19
18
<properties >
Original file line number Diff line number Diff line change 23
23
<include file =" v1.0.0.17__ArtifactArchiveListing.xml" relativeToChangelogFile =" true" />
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
+ <include file =" v1.0.0.20__User.xml" relativeToChangelogFile =" true" />
26
27
27
28
</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.20" author =" strongbox-dev@carlspring.com" >
8
+
9
+ <o : createClass name =" UserEntry" extends =" GenericEntity" >
10
+ <o : property name =" username" type =" string" />
11
+ <o : property name =" password" type =" string" />
12
+ <o : property name =" enabled" type =" boolean" />
13
+ <o : property name =" securityTokenKey" type =" string" />
14
+ <o : property name =" lastUpdate" type =" date" />
15
+ <o : property name =" roles" type =" embeddedset" linkedType =" string" />
16
+ <o : property name =" sourceId" type =" string" />
17
+ </o : createClass >
18
+
19
+ <o : createIndex name =" idx_user_username" on =" UserEntry" property =" username" type =" unique" />
20
+
21
+ </changeSet >
22
+
23
+ </databaseChangeLog >
24
+
You can’t perform that action at this time.
0 commit comments