Fix incorrect SQLite syntax in Migrations

LSLKeyTest
Melanie Thielker 2016-04-28 17:15:08 +02:00
parent a01f24e331
commit 8ef34a1bc5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ CREATE TABLE `AgentPrefs` (
`PermEveryone` INT(6) NOT NULL DEFAULT 0,
`PermGroup` INT(6) NOT NULL DEFAULT 0,
`PermNextOwner` INT(6) NOT NULL DEFAULT 532480,
UNIQUE KEY `PrincipalID` (`PrincipalID`),
UNIQUE (`PrincipalID`),
PRIMARY KEY(`PrincipalID`));
COMMIT;