from django.contrib import admin
from animalitos.models import Animal, Adoptante, Adoptar
from django.db import models
#Animal > Table of cardinality N, the primary key is idAnimal
#Adoptante > Table of cardinality N, the primary key is idAdoptante
#Adoptar > is a table created of N:N relations
from django.contrib import admin
from animalitos.models import Animal, Adoptante, Adoptar
from django.db import models
#Animal > Table of cardinality N, the primary key is idAnimal
#Adoptante > Table of cardinality N, the primary key is idAdoptante
#Adoptar > is a table created of N:N relations
2 matches
Mail list logo