fix: followUpPrompts migration for MariaDB (#3677)
This commit is contained in:
parent
99d4bacd8a
commit
13fb0f1384
|
|
@ -4,11 +4,12 @@ export class AddFollowUpPrompts1726666318346 implements MigrationInterface {
|
||||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||||
const columnExistsInChatflow = await queryRunner.hasColumn('chat_flow', 'followUpPrompts')
|
const columnExistsInChatflow = await queryRunner.hasColumn('chat_flow', 'followUpPrompts')
|
||||||
if (!columnExistsInChatflow) queryRunner.query(`ALTER TABLE \`chat_flow\` ADD COLUMN \`followUpPrompts\` TEXT;`)
|
if (!columnExistsInChatflow) queryRunner.query(`ALTER TABLE \`chat_flow\` ADD COLUMN \`followUpPrompts\` TEXT;`)
|
||||||
const columnExistsInChatMessage = await queryRunner.hasColumn('chat_flow', 'followUpPrompts')
|
const columnExistsInChatMessage = await queryRunner.hasColumn('chat_message', 'followUpPrompts')
|
||||||
if (!columnExistsInChatMessage) queryRunner.query(`ALTER TABLE \`chat_flow\` ADD COLUMN \`followUpPrompts\` TEXT;`)
|
if (!columnExistsInChatMessage) queryRunner.query(`ALTER TABLE \`chat_message\` ADD COLUMN \`followUpPrompts\` TEXT;`)
|
||||||
}
|
}
|
||||||
|
|
||||||
public async down(queryRunner: QueryRunner): Promise<void> {
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
||||||
await queryRunner.query(`ALTER TABLE \`chat_flow\` DROP COLUMN \`followUpPrompts\`;`)
|
await queryRunner.query(`ALTER TABLE \`chat_flow\` DROP COLUMN \`followUpPrompts\`;`)
|
||||||
|
await queryRunner.query(`ALTER TABLE \`chat_message\` DROP COLUMN \`followUpPrompts\`;`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue