2019-07-16 08:46:03 +03: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 09:43:31 +03:00
|
|
|
belongs_to :group
|
|
|
|
belongs_to :account
|
2019-07-16 08:46:03 +03:00
|
|
|
end
|