File: models.py

package info (click to toggle)
python-pytest-djangoapp 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 396 kB
  • sloc: python: 1,116; makefile: 114; sh: 6
file content (6 lines) | stat: -rw-r--r-- 106 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
from django.db import models


class Article(models.Model):

    title = models.CharField(max_length=200)