init
This commit is contained in:
11
backend-django/backend/models/fichier_exporte.py
Normal file
11
backend-django/backend/models/fichier_exporte.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.db import models
|
||||
|
||||
class FichiersExporte(models.Model):
|
||||
"""Modèle de fichiers exportés"""
|
||||
|
||||
nom_fichier = models.CharField(null=True, blank=True, max_length=100)
|
||||
date_export = models.DateTimeField(null=True, blank=True, auto_now=True)
|
||||
|
||||
class Meta:
|
||||
verbose_name = 'Fichier exporté'
|
||||
verbose_name_plural = 'Fichiers exportés'
|
||||
Reference in New Issue
Block a user