15 lines
408 B
Ruby
15 lines
408 B
Ruby
class CreatePayments < ActiveRecord::Migration
|
|
def change
|
|
create_table :payments do |t|
|
|
t.string :full_name, null: false
|
|
t.string :last4
|
|
t.integer :amount, null: false
|
|
t.string :authorization_code
|
|
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
|