the statusphere demo reworked into a vite/react app in a monorepo

Fix migration table name

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

authored by

Paul Frazee
devin ivy
and committed by
GitHub
5473b44f e4c364e4

+1 -1
+1 -1
src/db/migrations.ts
··· 37 37 async down(db: Kysely<unknown>) { 38 38 await db.schema.dropTable('auth_state').execute() 39 39 await db.schema.dropTable('auth_session').execute() 40 - await db.schema.dropTable('post').execute() 40 + await db.schema.dropTable('status').execute() 41 41 await db.schema.dropTable('did_cache').execute() 42 42 }, 43 43 }