Add antenna and bio-searchability support
This commit is contained in:
parent
7e125b276f
commit
2fef21664b
35 changed files with 775 additions and 6 deletions
16
app/models/antenna_domain.rb
Normal file
16
app/models/antenna_domain.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# == Schema Information
|
||||
#
|
||||
# Table name: antenna_domains
|
||||
#
|
||||
# id :bigint(8) not null, primary key
|
||||
# antenna_id :bigint(8) not null
|
||||
# name :string
|
||||
# exclude :boolean default(FALSE), not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
class AntennaDomain < ApplicationRecord
|
||||
|
||||
belongs_to :antenna
|
||||
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue