2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2016-07-27 13:18:50 +05:30
|
|
|
class CreatePayments < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :payments do |t|
|
2016-07-28 15:27:30 +05:30
|
|
|
t.string :last4
|
2016-08-04 13:44:09 +05:30
|
|
|
t.integer :amount
|
2016-07-28 15:27:30 +05:30
|
|
|
t.string :authorization_code
|
2016-07-27 13:18:50 +05:30
|
|
|
t.integer :status, default: 0, null: false
|
|
|
|
|
t.integer :user_id, null: false
|
|
|
|
|
t.integer :conference_id, null: false
|
|
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|