mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-07-02 19:08:27 +00:00
Use remember-me cookie if present
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
CREATE TABLE `rememberme` (
|
||||
`id` varchar(254) not null primary key,
|
||||
`cid` varchar(254) not null,
|
||||
`username` varchar(254) not null,
|
||||
`created` timestamp not null
|
||||
`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`)
|
||||
);
|
||||
|
Reference in New Issue
Block a user