FuzzySearch/migrations/20240815064629_initial-database.sql

6 lines
148 B
MySQL
Raw Normal View History

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