mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-24 19:38:24 +00:00
Download multiple files as zip
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
CREATE TABLE "download_query"(
|
||||
"id" varchar(254) not null primary key,
|
||||
"cid" varchar(254) not null,
|
||||
"file_id" varchar(254) not null,
|
||||
"file_count" int not null,
|
||||
"created" timestamp not null,
|
||||
"last_access" timestamp,
|
||||
"access_count" int not null,
|
||||
foreign key ("cid") references "collective"("cid"),
|
||||
foreign key ("file_id") references "filemeta"("file_id")
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
CREATE TABLE `download_query`(
|
||||
`id` varchar(254) not null primary key,
|
||||
`cid` varchar(254) not null,
|
||||
`file_id` varchar(254) not null,
|
||||
`file_count` int not null,
|
||||
`created` timestamp not null,
|
||||
`last_access` timestamp,
|
||||
`access_count` int not null,
|
||||
foreign key (`cid`) references `collective`(`cid`),
|
||||
foreign key (`file_id`) references `filemeta`(`file_id`)
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
CREATE TABLE "download_query"(
|
||||
"id" varchar(254) not null primary key,
|
||||
"cid" varchar(254) not null,
|
||||
"file_id" varchar(254) not null,
|
||||
"file_count" int not null,
|
||||
"created" timestamp not null,
|
||||
"last_access" timestamp,
|
||||
"access_count" int not null,
|
||||
foreign key ("cid") references "collective"("cid"),
|
||||
foreign key ("file_id") references "filemeta"("file_id")
|
||||
);
|
Reference in New Issue
Block a user