update code to insert into file history table

This commit is contained in:
ksyasuda
2022-01-04 23:06:12 -08:00
parent ae6e20ae1c
commit 7ca1907998
2 changed files with 39 additions and 16 deletions

View File

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