fuzzysearch/migrations/20210221025835_weasyl.up.sql

10 lines
160 B
MySQL
Raw Normal View History

2021-02-21 03:48:03 +00:00
CREATE TABLE weasyl (
id INTEGER PRIMARY KEY,
hash BIGINT,
data JSONB,
sha256 BYTEA,
file_size INTEGER
);
CREATE INDEX ON weasyl (sha256);