2023-08-06 17:49:58 -07:00
|
|
|
class CreateZones < ActiveRecord::Migration[4.2]
|
2013-01-21 17:34:39 -08:00
|
|
|
def self.up
|
|
|
|
create_table :zones do |t|
|
|
|
|
t.integer :depth
|
|
|
|
t.integer :type_id
|
|
|
|
end
|
|
|
|
Zone.create_translation_table! :label => :string, :plain_label => :string
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :zones
|
|
|
|
Zone.drop_translation_table!
|
|
|
|
end
|
|
|
|
end
|