mirror of
https://github.com/docmost/docmost.git
synced 2026-05-16 22:41:30 +08:00
9c7c2f1163
* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
60 lines
2.0 KiB
TypeScript
60 lines
2.0 KiB
TypeScript
import { Kysely, sql } from 'kysely';
|
|
|
|
export async function up(db: Kysely<any>): Promise<void> {
|
|
await db.schema
|
|
.createTable('pages')
|
|
.addColumn('id', 'uuid', (col) =>
|
|
col.primaryKey().defaultTo(sql`gen_random_uuid()`),
|
|
)
|
|
.addColumn('slug_id', 'varchar', (col) => col.notNull())
|
|
.addColumn('title', 'varchar', (col) => col)
|
|
.addColumn('icon', 'varchar', (col) => col)
|
|
.addColumn('cover_photo', 'varchar', (col) => col)
|
|
.addColumn('position', 'varchar', (col) => col)
|
|
.addColumn('content', 'jsonb', (col) => col)
|
|
.addColumn('ydoc', 'bytea', (col) => col)
|
|
.addColumn('text_content', 'text', (col) => col)
|
|
.addColumn('tsv', sql`tsvector`, (col) => col)
|
|
.addColumn('parent_page_id', 'uuid', (col) =>
|
|
col.references('pages.id').onDelete('cascade'),
|
|
)
|
|
.addColumn('creator_id', 'uuid', (col) => col.references('users.id'))
|
|
.addColumn('last_updated_by_id', 'uuid', (col) =>
|
|
col.references('users.id'),
|
|
)
|
|
.addColumn('deleted_by_id', 'uuid', (col) => col.references('users.id'))
|
|
.addColumn('space_id', 'uuid', (col) =>
|
|
col.references('spaces.id').onDelete('cascade').notNull(),
|
|
)
|
|
.addColumn('workspace_id', 'uuid', (col) =>
|
|
col.references('workspaces.id').onDelete('cascade').notNull(),
|
|
)
|
|
.addColumn('is_locked', 'boolean', (col) => col.defaultTo(false).notNull())
|
|
.addColumn('created_at', 'timestamptz', (col) =>
|
|
col.notNull().defaultTo(sql`now()`),
|
|
)
|
|
.addColumn('updated_at', 'timestamptz', (col) =>
|
|
col.notNull().defaultTo(sql`now()`),
|
|
)
|
|
.addColumn('deleted_at', 'timestamptz', (col) => col)
|
|
.addUniqueConstraint('pages_slug_id_unique', ['slug_id'])
|
|
.execute();
|
|
|
|
await db.schema
|
|
.createIndex('pages_tsv_idx')
|
|
.on('pages')
|
|
.using('GIN')
|
|
.column('tsv')
|
|
.execute();
|
|
|
|
await db.schema
|
|
.createIndex('pages_slug_id_idx')
|
|
.on('pages')
|
|
.column('slug_id')
|
|
.execute();
|
|
}
|
|
|
|
export async function down(db: Kysely<any>): Promise<void> {
|
|
await db.schema.dropTable('pages').execute();
|
|
}
|