Scratch space for learning atproto app development

Fix migration table name

Co-authored-by: devin ivy <devinivy@gmail.com>

Changed files
+1 -1
src
+1 -1
src/db/migrations.ts
···
async down(db: Kysely<unknown>) {
await db.schema.dropTable('auth_state').execute()
await db.schema.dropTable('auth_session').execute()
-
await db.schema.dropTable('post').execute()
+
await db.schema.dropTable('status').execute()
await db.schema.dropTable('did_cache').execute()
},
}