20160520003026_add_columns_into_credit_payments.rb 159 B

12345
  1. class AddColumnsIntoCreditPayments < ActiveRecord::Migration
  2. def change
  3. add_column :credit_payments, :user_id, :integer, index: true, null: true
  4. end
  5. end