ToolJet/server/migrations/1754283161900-IncreaseWhiteLabellingLogoFaviconSize.ts
Rohan Lahori bd37c55e9d
Bugfixes/branch 13 platform (#13633)
* increased the size of the white labelling fields

* fixed padding

* Revert "fixed padding"

This reverts commit b950a8767d.

* email padding fix

* ui fix
2025-08-04 15:45:21 +05:30

13 lines
No EOL
451 B
TypeScript

import { MigrationInterface, QueryRunner } from 'typeorm';
export class IncreaseWhiteLabellingLogoFaviconSize1722729600000 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`
ALTER TABLE white_labelling
ALTER COLUMN logo TYPE varchar(1024),
ALTER COLUMN favicon TYPE varchar(1024)
`);
}
public async down(queryRunner: QueryRunner): Promise<void> { }
}