mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
395 B
Ruby
14 lines
395 B
Ruby
class CreatePayments < ActiveRecord::Migration
|
|
def change
|
|
create_table :payments do |t|
|
|
t.string :last4, null: false
|
|
t.integer :amount, null: false
|
|
t.string :authorization_code, null: false
|
|
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
|