pastebin/setup_sqlite.sql

7 lines
191 B
MySQL
Raw Normal View History

2020-10-07 21:42:20 +02:00
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);