class CreateZones < ActiveRecord::Migration[4.2]
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
def self.down
drop_table :zones
Zone.drop_translation_table!