Remove multi select usage (#6004)
As per title! Also, I'm removing an incorrect logic in the enum migration runner that takes care of the case where we have no defaultValue but non nullable which is not a valid business case.
This commit is contained in:
@ -49,10 +49,6 @@ export class WorkspaceMigrationEnumService {
|
||||
typeof enumValue !== 'string',
|
||||
);
|
||||
|
||||
if (!columnDefinition.isNullable && !columnDefinition.defaultValue) {
|
||||
columnDefinition.defaultValue = serializeDefaultValue(enumValues[0]);
|
||||
}
|
||||
|
||||
const oldColumnName = `${columnDefinition.columnName}_old_${v4()}`;
|
||||
|
||||
// Rename old column
|
||||
|
||||
Reference in New Issue
Block a user