mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-31 02:54:21 +01:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { Kysely } from 'kysely';
|
|
|
|
export async function up(_db: Kysely<any>): Promise<void> {
|
|
}
|
|
|
|
export async function down(db: Kysely<any>): Promise<void> {
|
|
await db.schema.alterTable('users').dropColumn('admin').execute();
|
|
}
|