add zone model

This commit is contained in:
Christophe Robillard 2021-12-01 20:00:29 +01:00
parent 05c81e902d
commit 219eaf0d5e
3 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,10 @@
class CreateZones < ActiveRecord::Migration[6.1]
def change
create_table :zones do |t|
t.string :acronym
t.string :label
t.timestamps
end
end
end