mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 06:23:08 +00:00
10 lines
154 B
SQL
10 lines
154 B
SQL
CREATE TABLE e621 (
|
|
id INTEGER PRIMARY KEY,
|
|
hash BIGINT,
|
|
data JSONB,
|
|
sha256 BYTEA,
|
|
hash_error TEXT
|
|
);
|
|
|
|
CREATE INDEX ON e621 (sha256);
|