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