demarches-normaliennes/db/migrate/20211127133549_create_zones.rb
Christophe Robillard 219eaf0d5e add zone model
2021-12-02 19:16:11 +01:00

10 lines
177 B
Ruby

class CreateZones < ActiveRecord::Migration[6.1]
def change
create_table :zones do |t|
t.string :acronym
t.string :label
t.timestamps
end
end
end