20140814131606_create_juridical_natures_table.rb 203 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class CreateJuridicalNaturesTable < ActiveRecord::Migration def up create_table :juridical_natures do |t| t.string :name end end def down drop_table :juridical_natures end end