import { Migration } from '../migrate'; export const migration: Migration = { down: (db) => { db.exec(` DROP TABLE tokens `); }, up: (db) => { db.exec(` CREATE TABLE tokens ( token VARCHAR(16) PRIMARY KEY, timestamp INTEGER ) `); }, version: 1632267641, };