2019-07-16 06:46:03 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: group_removed_accounts
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# group_id :bigint(8) not null
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class GroupRemovedAccount < ApplicationRecord
|
2019-07-16 07:43:31 +01:00
|
|
|
belongs_to :group
|
|
|
|
belongs_to :account
|
2019-07-16 06:46:03 +01:00
|
|
|
end
|