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