models.py 408 B

1234567891011121314
  1. from django.db import models
  2. class Target(models.Model):
  3. id = models.IntegerField(db_column='id',primary_key=True)
  4. nome = models.CharField(db_column='nome',max_length=30)
  5. spazio = models.IntegerField(db_column='spazio')
  6. nota = models.TextField(db_column='nota')
  7. enabled = models.BooleanField(db_column='enabled')
  8. class Meta:
  9. ordering = ['nome']
  10. db_table = 'target'
  11. managed = False