mirror of
https://codeberg.org/SeedDMS/paperless
synced 2026-05-10 06:44:12 +00:00
7 lines
209 B
SQL
7 lines
209 B
SQL
CREATE TABLE IF NOT EXISTS `tblPaperlessView` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
`userID` INTEGER NOT NULL default '0' REFERENCES `tblUsers` (`id`) ON DELETE CASCADE,
|
|
`view` TEXT DEFAULT NULL
|
|
);
|
|
|