Skip to content
Snippets Groups Projects
Commit ac7bcf33 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

OSB-28: add log table

parent 085ce591
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
......@@ -1808,6 +1808,7 @@ LCU/Maintenance/DBInterface/monitoringdb/models/element.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/element_error.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/error_details.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/fixed_types.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/log.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/rtsm.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/station.py -text
LCU/Maintenance/DBInterface/monitoringdb/models/station_test.py -text
......
import django.db.models as models
class ActionLog(models.Model):
entry_id = models.IntegerField()
model_name = models.CharField(len=100)
who = models.CharField(len=100)
when = models.DateTimeField(auto_now_add=True)
what = models.CharField(len=1000)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment