from django.db import models class DataModel(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=255)