10 lines
177 B
Ruby
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
|