20151219193605_create_spmx_counties.rb 213 B

123456789
  1. class CreateSpmxCounties < ActiveRecord::Migration
  2. def change
  3. create_table :spmx_counties do |t|
  4. t.integer :id_, null: false
  5. t.belongs_to :state, index:true
  6. t.string :name, null: false
  7. end
  8. end
  9. end