Files
django-htmx-presenatation/project/main/models/person.py
2024-05-15 22:16:59 +02:00

11 lines
240 B
Python

from django.db import models
class Person(models.Model):
name = models.CharField(max_length=100)
address = models.CharField(max_length=100)
city = models.CharField(max_length=100)
class Meta:
db_table = "persons"