10 lines
302 B
SQL
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
|
|
) |