Sha256: 3bb726257d9da1b5f4bb167f9b2b5b3503da7af19913a90a79fb9149935c16aa
Contents?: true
Size: 443 Bytes
Versions: 17
Compression:
Stored size: 443 Bytes
Contents
# encoding: utf-8 class CreateUserProjectParticipations < ActiveRecord::Migration def change create_table :user_project_participations do |t| t.references :project t.references :user t.references :project_role t.timestamps end add_index :user_project_participations, :project_id add_index :user_project_participations, :user_id add_index :user_project_participations, :project_role_id end end
Version data entries
17 entries across 17 versions & 2 rubygems