TBot/schema.sql
jkhsjdhjs 2e9d7cca51
migrate to postgres
add getID3 as a submodule
2019-09-18 20:08:06 +00:00

8 lines
173 B
SQL

CREATE TABLE IF NOT EXISTS "files" (
"id" serial PRIMARY KEY,
"file" text NOT NULL,
"file_id" text NOT NULL
);
CREATE INDEX IF NOT EXISTS files_file ON files (file);