Gab-Social/app/models/group_removed_account.rb
2019-07-16 21:43:31 +03:00

16 lines
378 B
Ruby

# == 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
belongs_to :group
belongs_to :account
end