Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. from django.db import models
  2. from usuarios.models import Usuario
  3.  
  4. # Create your models here.
  5.  
  6. class Carnet(models.Model):
  7.     usuario = models.ForeingKey(Usuario)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement