mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
cleanups
This commit is contained in:
parent
ff6b7b0877
commit
c97ff67ca2
@ -12,9 +12,6 @@ export async function up(db: Kysely<any>): Promise<void> {
|
||||
.addColumn('target_page_id', 'uuid', (col) =>
|
||||
col.references('pages.id').onDelete('cascade').notNull(),
|
||||
)
|
||||
// .addColumn('user_id', 'uuid', (col) =>
|
||||
// col.references('users.id').onDelete('cascade').notNull(),
|
||||
// )
|
||||
.addColumn('workspace_id', 'uuid', (col) =>
|
||||
col.references('workspaces.id').onDelete('cascade').notNull(),
|
||||
)
|
||||
@ -29,18 +26,6 @@ export async function up(db: Kysely<any>): Promise<void> {
|
||||
'target_page_id',
|
||||
])
|
||||
.execute();
|
||||
|
||||
await db.schema
|
||||
.createIndex('backlinks_source_page_id_idx')
|
||||
.on('backlinks')
|
||||
.column('source_page_id')
|
||||
.execute();
|
||||
|
||||
await db.schema
|
||||
.createIndex('backlinks_target_page_id_idx')
|
||||
.on('backlinks')
|
||||
.column('target_page_id')
|
||||
.execute();
|
||||
}
|
||||
|
||||
export async function down(db: Kysely<any>): Promise<void> {
|
||||
|
@ -30,7 +30,6 @@ export class BacklinksProcessor extends WorkerHost implements OnModuleDestroy {
|
||||
.selectFrom('backlinks')
|
||||
.select('targetPageId')
|
||||
.where('sourcePageId', '=', pageId)
|
||||
.where('workspaceId', '=', workspaceId)
|
||||
.execute();
|
||||
|
||||
if (existingBacklinks.length === 0 && mentions.length === 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user