pastebin/setup_sqlite.sql

7 lines
191 B
SQL

CREATE TABLE files (
hash TEXT NOT NULL PRIMARY KEY,
detected_type TEXT NOT NULL,
create_time INT NOT NULL,
access_time INT NOT NULL,
access_count INT UNSIGNED NOT NULL DEFAULT 0);