I have a languages column which is an array of strings with
add_column :table, :languages, :string, array: true, default: []
When I use update_attributes on that model, all columns are being updated except the languages column which remains []
Is there anything special needed to do here?