mirror of
https://codeberg.org/SeedDMS/paperless
synced 2026-05-10 06:44:12 +00:00
9 lines
366 B
SQL
9 lines
366 B
SQL
CREATE TABLE IF NOT EXISTS `tblPaperlessView` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`userID` int(11) NOT NULL DEFAULT '0',
|
|
`view` text DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `tblDocumentLinks_user` (`userID`),
|
|
CONSTRAINT `tblPaperlessView_user` FOREIGN KEY (`userID`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|