Skip to content

Commit

Permalink
fix edit table name (#8419)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaysasidrn committed Jan 2, 2024
1 parent 73fbc43 commit 3b11d08
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/src/dto/tooljet-db.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ export class PostgrestTableColumnDto {
export class RenamePostgrestTableDto {
@IsString()
@IsNotEmpty()
@MaxLength(31, { message: 'Table name must be less than 32 characters' })
@MinLength(1, { message: 'Table name must be at least 1 character' })
@Matches(/^[a-zA-Z0-9_]*$/, {
message: 'Table name can only contain letters, numbers and underscores',
Expand Down

0 comments on commit 3b11d08

Please sign in to comment.