Migration fix

This commit is contained in:
Dallas Hoffman 2023-09-10 18:06:30 -04:00
parent 51aaeb53cf
commit bf38af1022
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ export const Migration20230830: Migration = {
},
async down(db: Kysely<any>) {
await db.schema.dropTable('note').execute();
await sql`DROP TRIGGER noteUpdateUpdatedAtTrigger`.execute(db);
await db.schema.dropTable('tag').execute();
await db.schema.dropTable('noteTag').execute();
},