AlbertaSat / ex2_ground_station_website

Ground station user interface for Ex-Alta 2.
6 stars 3 forks source link

Extend communications table to correlate sent messages and responses #50

Open ryankortbeek opened 2 years ago

ryankortbeek commented 2 years ago

Brief Feature Description

Correlate sent messages and satellite responses by adding an additional column to the communications table in the database. The comm.py module will also need to be modified to add the reference to the sent message id when creating the communication record for the response.

Additional Details

  1. Extend communications table to have a sent_message_id field (or some name like that) of type int (and nullable=True) which references the id of the communications record that the response is a response to
  2. In the comm.py module when creating a communication record for the response, include the message_id of the communication that was sent to the satellite

Priority

Low

jmmabanta commented 2 years ago

More Additional Details: