import Migration from "../db/Migration.js"; export default class DropLegacyLogsTable extends Migration { public async install(): Promise { await this.query('DROP TABLE IF EXISTS logs'); } public async rollback(): Promise { // Do nothing } }