Skip to content
Snippets Groups Projects
Forked from PortalMEC / portalmec
1037 commits behind the upstream repository.
20160128115428_create_downloads.rb 294 B
class CreateDownloads < ActiveRecord::Migration[4.2]
  def change
    create_table :downloads do |t|
      t.references :downloadable, polymorphic: true, index: true

      t.references :user, index: true

      t.timestamps null: false
    end
    add_foreign_key :downloads, :users
  end
end