File: models.py

package info (click to toggle)
python-django-health-check 3.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 428 kB
  • sloc: python: 1,886; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
from django.db import models


class TestModel(models.Model):
    title = models.CharField(max_length=128)

    class Meta:
        db_table = "health_check_db_testmodel"