import { type Kysely } from 'kysely'; /** * Adds `content_types.book_root`. **Superseded by `0037_drop_book_columns`, which drops it.** * * It marked a content type whose items were the root of a "book" — a subtree treated as one * document, with an outline and yearly editions. That feature was removed; this migration stays * because Kysely refuses to migrate a database that has executed a migration the registry no longer * lists, so the pair has to be add-then-drop rather than a deletion. Nothing reads this column. */ export declare function up(db: Kysely): Promise; export declare function down(db: Kysely): Promise;