demarches-normaliennes/db/migrate/20230508103932_add_tchap_hs_to_zones.rb

6 lines
146 B
Ruby
Raw Normal View History

2023-03-27 15:34:01 +02:00
class AddTchapHsToZones < ActiveRecord::Migration[6.1]
def change
add_column :zones, :tchap_hs, :string, array: true, default: []
end
end