houdini/db/migrate/20210204210627_create_modern_donations.rb

11 lines
218 B
Ruby
Raw Normal View History

2021-02-08 14:55:31 -06:00
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