models.py 202 B

1234567
  1. from __future__ import unicode_literals, print_function
  2. from django.db import models
  3. class SimpleModel(models.Model):
  4. number = models.IntegerField()
  5. contents = models.CharField(max_length=16)