Rails 5, Postgres 9
I have >10 millions of records for model. I need to add new field with array type. From docs I can add new migration as
add_column :model, :new_field, :string, array: true, default: []
But after it Database blocked because of many Alter operations with setting default value.
Is it real to create new array field without (default: []) value?