Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Dartanlla/OWS into refactor/UserReg…
Browse files Browse the repository at this point in the history
…isterLogin
  • Loading branch information
CanisHelix committed May 28, 2024
2 parents 04c15b5 + d2cc2e4 commit ff3d896
Show file tree
Hide file tree
Showing 13 changed files with 1,153 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ WHERE OWSDBVersion IS NOT NULL;
SELECT OWSDBVersion
FROM OWSVersion;


CREATE TABLE DefaultCharacterValues
(
CustomerGUID UUID NOT NULL,
Expand All @@ -21,6 +22,7 @@ CREATE TABLE DefaultCharacterValues
PRIMARY KEY (DefaultCharacterValuesID, CustomerGUID)
);


CREATE TABLE DefaultCustomCharacterData
(
CustomerGUID UUID NOT NULL,
Expand All @@ -33,3 +35,4 @@ CREATE TABLE DefaultCustomCharacterData
CONSTRAINT FK_DefaultCustomCharacterData_DefaultCharacterValueID
FOREIGN KEY (DefaultCharacterValuesID, CustomerGUID) REFERENCES DefaultCharacterValues (DefaultCharacterValuesID, CustomerGUID)
);

Loading

0 comments on commit ff3d896

Please sign in to comment.