mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import type { Kysely } from 'kysely';
|
|
|
|
export async function up(db: Kysely<unknown>): Promise<void> {
|
|
await db.schema.dropTable('users').ifExists().execute();
|
|
}
|
|
|
|
export async function down(_db: Kysely<unknown>): Promise<void> {
|
|
}
|