17 lines
456 B
Ruby
17 lines
456 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: antenna_accounts
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# antenna_id :bigint(8) not null
|
|
# account_id :bigint(8) not null
|
|
# exclude :boolean default(FALSE), not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class AntennaAccount < ApplicationRecord
|
|
belongs_to :antenna
|
|
belongs_to :account
|
|
end
|