add file_history table and update setup script

This commit is contained in:
ksyasuda
2022-01-04 18:10:34 -08:00
parent 090f0e84e7
commit 21597fc1bc
3 changed files with 11 additions and 87 deletions

5
sql/file_history.sql Normal file
View File

@@ -0,0 +1,5 @@
CREATE TABLE file_history (
id integer PRIMARY KEY AUTOINCREMENT,
directory varchar(200) NOT NULL,
filename varchar(200) NOT NULL
);