FuzzySearch/migrations/20240815064629_initial-database.sql
2024-12-21 16:56:44 +01:00

10 lines
302 B
SQL

-- Add migration script here
CREATE TABLE FuzzyHashes(
id SERIAL NOT NULL PRIMARY KEY,
mean_hash BIGINT NOT NULL,
gradient_hash BIGINT NOT NULL,
vert_gradient_hash BIGINT NOT NULL,
double_gradient_hash BIGINT NOT NULL,
block_hash BIGINT NOT NULL,
post_id CHAR(25) NOT NULL
)