import { Migration } from '../migrate'; export const migration: Migration = { down: (db) => { db.exec(` ALTER TABLE posts DROP COLUMN fingerprint; `); }, up: (db) => { db.exec(` ALTER TABLE posts ADD fingerprint VARCHAR(255) DEFAULT NULL; `); }, version: 1631822323, };