20180403104959_create_group_participations.rb 275 B

12345678910
  1. class CreateGroupParticipations < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :group_participations do |t|
  4. t.references :user, foreign_key: true, index: true
  5. t.references :group, polymorphic: true, index: true
  6. t.timestamps
  7. end
  8. end
  9. end