Class: TimesheetPartyRole

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/timesheet_party_role.rb

Overview

create_table :timesheet_party_roles do |t|

t.references :timesheet
t.references :party
t.referneces :role_type

t.timestamps

end

add_index :timesheet_party_roles, :timesheet_id add_index :timesheet_party_roles, :party_id add_index :timesheet_party_roles, :role_type_id