mirror of
https://github.com/docmost/docmost.git
synced 2026-08-25 14:42:14 +10:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { type Kysely } from 'kysely';
|
|
|
|
export async function up(db: Kysely<any>): Promise<void> {
|
|
await db.schema.dropIndex('pages_slug_id_idx').ifExists().execute();
|
|
}
|
|
|
|
export async function down(db: Kysely<any>): Promise<void> {}
|