This commit is contained in:
Philipinho 2025-02-14 15:33:35 +00:00
parent ff6b7b0877
commit c97ff67ca2
2 changed files with 0 additions and 16 deletions

View File

@ -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> {

View File

@ -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) {