Implementing Database Design In Django | Models and Migrations | Model Relationships | Field Types

preview_player
Показать описание
In this video, I am going to explain the following topics -
* How to implement the database design that we discussed in the last video through code in Django project
* How to handle different model relationships in Django
* One To One Relationship
* Many To One Relationship
* Many To Many Relationship
* Composite Unique Keys
* Different Type of Fields in Django like IntegerField, Options Field, CharField, and much more
* Models and Migrations and how to do makemigrations and migrate in Django
* Brief on Default User Model in Django
* Admin Panel ( GUI By Django )
* Creating Superuser
* Populating database using Django Admin Panel
.
.
If you like the video do give it a thumbs up 👍 and share the playlist with your friends.........
.
.
The next video will be a dedicated video on Django default user, admin panel, staff-user, superuser, custom user model, and authentication
.
.
.
✔ Do subscribe to my channel "Priyanshu Gupta" for more skill development and point to point videos❤

I am trying to cover all problems faced by a developer as the material available on the internet is scattered and difficult to find...... I am trying to bring that all together which can be used effectively for fast and efficient productivity and skill enhancement
.
.
.
.

#Django #Database #Models
Рекомендации по теме
Комментарии
Автор

In Cart Model
In user field, it should be OneToOneField instead of ForeignKey
class Cart(models.Model):
cart_id =
user = models.OneToOneField(User, on_delete = models.CASCADE)
created_on =

PriyanshuGuptaOfficial
Автор

00:01 Implementing database design in Django with models and migrations
02:05 Customize the bank deposit model and admin interface
03:59 Implementing model relationships and field types in Django
06:07 Implementing model relationships in Django
08:15 Implementing database design in Django involves model relationships and field types.
10:35 Implementing user model and admin panel in Django
12:40 Importing models in admin panel for database design
14:48 Implementing Database Design In Django
16:58 Upcoming videos will be interesting and customized

rohitgupta
Автор

Good job *Priyanshu* bro
Seriously yrr... Its awesome 👍

Ayush-vzhw
Автор

I have created one to many ralation ship between subjects and student but for one student I am unable to select subjects more than one.what can I do Priyanshu bro?...

SurajKumar-griz