FuzzySearch/migrations/20240815064629_initial-database.sql

10 lines
302 B
MySQL
Raw Normal View History

2024-08-17 15:59:49 +02:00
-- Add migration script here
CREATE TABLE FuzzyHashes(
2024-08-19 07:42:03 +02:00
id SERIAL NOT NULL PRIMARY KEY,
2024-12-21 16:56:44 +01:00
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,
2024-08-19 07:42:03 +02:00
post_id CHAR(25) NOT NULL
2024-08-17 15:59:49 +02:00
)