Skip to content

Commit b77c619

Browse files
committed
SB-1286: Store users in OrientDB
1 parent 09f45d5 commit b77c619

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66

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

9-
<o:createClass name="User" extends="GenericEntity">
9+
<o:createClass name="UserEntry" extends="GenericEntity">
1010
<o:property name="username" type="string" />
1111
<o:property name="password" type="string" />
1212
<o:property name="enabled" type="boolean" />
1313
<o:property name="securityTokenKey" type="string" />
1414
<o:property name="lastUpdate" type="date" />
1515
<o:property name="roles" type="embeddedset" linkedType="string"/>
16-
<o:property name="source" type="string" />
16+
<o:property name="sourceId" type="string" />
1717
</o:createClass>
1818

19-
<o:createIndex name="idx_user_username" on="User" property="username" type="unique" />
19+
<o:createIndex name="idx_user_username" on="UserEntry" property="username" type="unique" />
2020

2121
</changeSet>
2222

0 commit comments

Comments
 (0)