1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20140910030549_create_donation_features.rb

11 lines
223 B
Ruby
Raw Normal View History

class CreateDonationFeatures < ActiveRecord::Migration[3.2]
2014-09-09 21:16:02 -07:00
def change
create_table :donation_features do |t|
t.integer :donation_id, null: false
t.integer :outfit_id
t.timestamps
end
end
end