FuzzySearch/migrations/20240815064629_initial-database.sql

6 lines
153 B
MySQL
Raw Normal View History

2024-08-17 13:59:49 +00:00
-- Add migration script here
CREATE TABLE FuzzyHashes(
`id` SERIAL NOT NULL PRIMARY KEY
`hash` BIGINT NOT NULL,
`post_id` CHAR(25) NOT NULL
)