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