f71694dc DB |
1 | # -*- encoding: utf-8 -*- |
2 | |
7992b247 DB |
3 | from django.db import models |
4 | |
f71694dc DB |
5 | class Etablissement(models.Model): |
6 | nom = models.CharField(max_length=255) |
7 | |
8 | class Personne(models.Model): |
9 | nom = models.CharField(max_length=255) |