quadfile/schema.sql

8 lines
172 B
MySQL
Raw Permalink Normal View History

2015-12-23 13:11:38 +00:00
-- noinspection SqlNoDataSourceInspectionForFile
drop table if exists files;
create table files (
file text primary key not null,
b2 text,
time int,
accessed int
);