mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 19:07:29 +00:00
* increased the size of the white labelling fields
* fixed padding
* Revert "fixed padding"
This reverts commit b950a8767d.
* email padding fix
* ui fix
13 lines
No EOL
451 B
TypeScript
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> { }
|
|
} |