Skip to content

Instantly share code, notes, and snippets.

@marcorichetta
Created August 22, 2020 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcorichetta/9eed7ce9a0af2a2aab273db3c8138427 to your computer and use it in GitHub Desktop.
Save marcorichetta/9eed7ce9a0af2a2aab273db3c8138427 to your computer and use it in GitHub Desktop.
Migraciones Django

Restricciones en la BD

  • Más restrictrivo > Más permisivo
    • Es más fácil quitar una restricción que agregarla.
  • Por defecto tus fields deberían tener null=False. (Esto es el default en Django)
  • ForeignKeys on_delete=models.PROTECT. No queres perder info por un CASCADE mal puesto.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment