10 lines
200 B
Ruby
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
|