mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-29 11:14:25 +01:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { Kysely } from 'kysely';
|
|
|
|
export async function up(db: Kysely<any>): Promise<void> {
|
|
await db.schema.dropTable('users').ifExists().execute();
|
|
}
|
|
|
|
export async function down(_db: Kysely<any>): Promise<void> {
|
|
}
|