Gab-Social/app/models/group_removed_account.rb

16 lines
378 B
Ruby
Raw Normal View History

# == 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 06:43:31 +00:00
belongs_to :group
belongs_to :account
end