from django.contrib.auth.models import User
from django.db import models

# Create your models here.
class DatosPersonas(models.Model):
    usuario=models.ForeignKey(User,on_delete=models.CASCADE)
    cargo=models.CharField(max_length=120)