File: models.py

package info (click to toggle)
django-jinja 2.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: python: 1,667; makefile: 17; javascript: 1
file content (5 lines) | stat: -rw-r--r-- 112 bytes parent folder | download | duplicates (3)
1
2
3
4
5
from django.db.models import Model, DateTimeField


class TestModel(Model):
    date = DateTimeField(null=True)