20151219193500_create_spmx_states.rb 142 B

1234567
  1. class CreateSpmxStates < ActiveRecord::Migration
  2. def change
  3. create_table :spmx_states do |t|
  4. t.string :name, null: false
  5. end
  6. end
  7. end