mirror of
https://codeberg.org/SeedDMS/paperless
synced 2024-11-26 15:32:08 +00:00
add sql statements for sqlite
This commit is contained in:
parent
c75e980c0a
commit
25e3a45311
10
paperless-sqlite.sql
Normal file
10
paperless-sqlite.sql
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
CREATE TABLE `tblPaperlessView` (
|
||||||
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
`userID` INTEGER NOT NULL default '0' REFERENCES `tblUsers` (`id`) ON DELETE CASCADE,
|
||||||
|
`view` TEXT DEFAULT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user