2023-08-06 17:49:58 -07:00
|
|
|
class CreateDonations < ActiveRecord::Migration[4.2]
|
2014-09-09 19:06:38 -07:00
|
|
|
def change
|
|
|
|
create_table :donations do |t|
|
|
|
|
t.integer :amount, null: false
|
|
|
|
t.string :charge_id, null: false
|
|
|
|
t.integer :user_id
|
|
|
|
t.string :donor_name
|
2014-09-09 20:04:17 -07:00
|
|
|
t.string :secret
|
2014-09-09 19:06:38 -07:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|