20160119180651_create_payment_methods.rb 241 B

123456789
  1. class CreatePaymentMethods < ActiveRecord::Migration
  2. def change
  3. create_table :payment_methods do |t|
  4. t.string :method, null: false
  5. t.integer :status, default: 1, null: false
  6. t.timestamps null: false
  7. end
  8. end
  9. end