A listing of the possible receivers for each telescope.  Currently unused as we are not collecting receiver data.

Definition:

   Column    |       Type        | Collation | Nullable |                    Default
-------------+-------------------+-----------+----------+------------------------------------------------
 receiver_id | integer           |           | not null | nextval('receivers_receiver_id_seq'::regclass)
 description | character varying |           | not null |
Indexes:
    "receiver_id" PRIMARY KEY, btree (receiver_id)
Referenced by:
    TABLE "subscans" CONSTRAINT "receivers_subscans_fk" FOREIGN KEY (receiver_id) REFERENCES receivers(receiver_id)

Columns:

receiver_id: an auto-generated id.

description: and user-readable short identifier for the receiver.

  • No labels