factory ColumnSchema.fromMap(String name, Map<String, dynamic> map) { return ColumnSchema( name, type: map['type']! as String, isNullable: (map['isNullable'] as bool?) ?? false, ); }