FLUJOS/FLUJOS_DATOS/FLUJOS_DATOS/noticias/models.py
CAPITANSITO a40b946163 Initial commit - FLUJOS codebase (production branch)
Includes: FLUJOS app (Node/Flask/Python), FLUJOS_DATOS scripts (scrapers, Keras, Django)
Excludes: MongoDB, scraped data, Wikipedia/WikiLeaks dumps, Python venv, node_modules
2026-03-31 14:10:02 +02:00

6 lines
204 B
Python
Executable file

from django.db import models
class Noticia(models.Model):
titulo = models.CharField(max_length=255)
contenido = models.TextField()
fecha_publicacion = models.DateTimeField(auto_now_add=True)