fuzzysearch/migrations/20210221025652_e621.up.sql

10 lines
154 B
MySQL
Raw Normal View History

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