Add file_web_serve_batch table

This commit is contained in:
Bryan Ashby 2017-09-26 10:39:23 -06:00
parent 37c78209a8
commit f105c25e17
1 changed files with 9 additions and 0 deletions

View File

@ -374,6 +374,15 @@ const DB_INIT_TABLE = {
);`
);
dbs.file.run(
`CREATE TABLE IF NOT EXISTS file_web_serve_batch (
hash_id VARCHAR NOT NULL,
file_id INTEGER NOT NULL,
UNIQUE(hash_id, file_id)
);`
);
return cb(null);
}
};