tag: makemigrations

  • How to create a fullstack application using Django and Python Part 33

    How to create a fullstack application using Django and Python Part 33

    Maria D. Campbell

    In this section, I get a custom domain for my Django Boards application from Namecheap, connect the custom domain to Render, configure domain verification with Namecheap for Mailtrap backend email service, add a new app called faqs, create the models for faqs, create a view for faqs, create a URLconf for the faqs_index view, configure the global URL configuration for faqs_index view in django_boards/urls.py, migrate faqs, and make the faqs app modifiable in the admin interface.

    #fullstack development, #macOS, #django, #app, #python3, #custom domain, #domain verification, #backend email service, #makemigrations, #migrate, #mailtrap, #namecheap, #series, #views

  • How to create a fullstack application using Django and Python Part 7

    How to create a fullstack application using Django and Python Part 7

    Maria D. Campbell

    In this section, I discuss the Django model basics, I compare the UML Class Fields Diagram to the models.py source code, I migrate the models with the makemigrations command, apply the model migrations with the migrate command, play with the Models API, and discuss the Django Model manager.

    #macOS, #django, #fullstack development, #makemigrations, #migrate, #model operations, #model manager, #python3, #python shell, #queryset, #series