mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-30 20:28:26 +00:00
Fix foreign key constraints
This commit is contained in:
@ -4,6 +4,5 @@ CREATE TABLE `rememberme` (
|
||||
`login` varchar(254) not null,
|
||||
`created` timestamp not null,
|
||||
`uses` int not null,
|
||||
FOREIGN KEY (`cid`) REFERENCES `user_`(`cid`),
|
||||
FOREIGN KEY (`login`) REFERENCES `user_`(`login`)
|
||||
FOREIGN KEY (`cid`,`login`) REFERENCES `user_`(`cid`,`login`)
|
||||
);
|
||||
|
Reference in New Issue
Block a user