Skip to content

Repository files navigation

Django Sesion

Apps

  • Author, puede tener varios Books (Relación de uno a muchos)
  • Book, puede pertecener a diferentes Genres (Relación de muchos a muchos)
  • Genre, puede tener varios Books (Relación de muchos a muchos)
  • Profile, pertenece a un solo Author (Relación de uno a uno)

Authors

columna tipo
id int PK Auto
name varchar(100)

Books

columna tipo
id int PK Auto
tittle varchar(100)
author_id int FK (authors.id)

Genrs

columna tipo
id int PK Auto
name varchar(100)

BooksGenrs (Pivote)

columna tipo
id int PK Auto
genre_id int FK (genrs.id)
book_id int FK (books.id)

Profiles

columna tipo
id int PK Auto
bio text
author_id int FK (authors.id)

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages