factory Column.fromJson(Map<String, dynamic> json) { return Column( name: json['Name'] as String, comment: json['Comment'] as String?, type: json['Type'] as String?, ); }