As the question states, I want to create multiple models of same type. Let's say I've got this simple class for sensor data:
class Sensor_data(models.Model):
value = models.FloatField()
#other stuff
And all sensors in my system have a unique ID.
So I would be able to create an own data-table for these sensor by naming them SensorID.Sensor_data ( I want to do this because each sensor will generate a large amount of data )
I've read about dynamic models, but since I don't need to be able to register new sensor in runtime, I've not tried to implement it. (Or is this the best way??)
And even if I manage to create multiple models of same type, how can I register all those models to admin site and manage them as super-admin? (Thinking of that the django admin only can register one type per object? right? ) thinking of the model is already registered Error <-------- Not sure about this
So what would you do? To e.g. create 100 tables of same type?
Keep in mind that I'm kind of new to both django and python