demarches-normaliennes/db/migrate/20230508103932_add_tchap_hs_to_zones.rb
Christophe Robillard a191f66508 add tchap hs to zone
2023-05-16 09:40:53 +02:00

5 lines
146 B
Ruby

class AddTchapHsToZones < ActiveRecord::Migration[6.1]
def change
add_column :zones, :tchap_hs, :string, array: true, default: []
end
end