FuzzySearch/migrations/20240815064629_initial-database.sql

6 lines
153 B
SQL

-- Add migration script here
CREATE TABLE FuzzyHashes(
`id` SERIAL NOT NULL PRIMARY KEY
`hash` BIGINT NOT NULL,
`post_id` CHAR(25) NOT NULL
)