houdini/db/migrate/20180119215653_create_payment_imports.rb

10 lines
200 B
Ruby

class CreatePaymentImports < ActiveRecord::Migration
def change
create_table :payment_imports do |t|
t.references :user
t.references :nonprofit
t.timestamps
end
end
end