11 lines
218 B
Ruby
11 lines
218 B
Ruby
|
class CreateDonationFeatures < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :donation_features do |t|
|
||
|
t.integer :donation_id, null: false
|
||
|
t.integer :outfit_id
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|