16 lines
293 B
Ruby
16 lines
293 B
Ruby
|
class InvitedGroup < ActiveRecord::Base
|
||
|
belongs_to :group
|
||
|
belongs_to :invite
|
||
|
end
|
||
|
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: invited_groups
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# group_id :integer
|
||
|
# invite_id :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
#
|