houdini/db/migrate/20210204210627_create_modern_donations.rb
2021-02-09 11:18:14 -06:00

10 lines
218 B
Ruby

class CreateModernDonations < ActiveRecord::Migration[6.1]
def change
create_table :modern_donations, id: :string do |t|
t.integer :amount
t.references :donation
t.timestamps
end
end
end