How to Create a Model in Django | Django Complete Project in Hindi

Sdílet
Vložit
  • čas přidán 9. 09. 2024
  • In this part of the Django model tutorial, you will learn how to create a model in Django. This video will take you through what is model and how to implement a model in Django.
    You can select the char field in the model as well. You can select the maximum length of the model characters. The function that is used to create a model is makemigration.
    Models are used to make the data dynamic and you will learn how to make that with the help of this video. A complete strategy to use logics and functions is explained in this video.
    Our trainer will discuss it all so you can learn Django with example project. Also, you can watch more videos to understand all the concepts about the Django framework. We have a separate and complete playlist for that.
    WsCubeTech - Digital Marketing Agency & Institute.
    ✔ We can help you to create a Digital Marketing plan to take your business to new heights.
    ✔ Offering Job Oriented Most Latest, Updated, and advanced Digital Marketing Courses with Practical, Hands-on Live Projects Training & Exposure.
    For More information : Call us at : +91- 92696-98122
    Or visit at www.wscubetech...
    There is a complete playlist of Digital Marketing Interview Tips & Tricks available -
    www.youtube.co...
    There is a complete playlist of Facebook Ads available -
    Link: • Facebook Advance SMO &...
    There is a complete playlist of Twitter Ads available.
    Link: • Twitter Ads | All Twit...
    ✅ CONNECT WITH THE FOUNDER (Mr. Kushagra Bhatia) -
    👉 Instagram - / kushagrabhatiaofficial
    👉 LinkedIn - / kushagra-bhatia
    👉 Facebook - / kushagrawscubetech
    Please Don't Forget to Like, Share & Subscribe
    ►Subscribe: bit.ly/wscubech...
    ► Facebook: / wsubetech.india
    ► Twitter: / wscube
    ► Instagram: / wscubetechindia
    ► LinkedIn : / wscube-tech
    ► CZcams: / wscubetechjodhpur
    ► Website: wscubetech.com
    -------------------------------------| Thanks |--------------------------
    #Django2022 #DjangoModel #CreateModel

Komentáře • 18

  • @wscubetech
    @wscubetech  Před 2 lety +3

    😎Hey, thanks for watching! We’d love to know your thoughts/doubts here in the comments.
    🔴 To learn Django online with regular LIVE CLASSES, enroll now: forms.gle/GHasHRhehT2v1BTf6
    👉For professional self-paced certification courses (pre-recorded), visit: bit.ly/Pre-Recorded-Course
    👉Don’t forget to SUBSCRIBE to our channel for more such videos & valuable content: bit.ly/CZcams-WsCubeTech

  • @sky7681
    @sky7681 Před rokem +2

    Wow.!!! Thank you so much sir crystal clear explanations🙏🙏

  • @MuhammadKhan-ok3hf
    @MuhammadKhan-ok3hf Před 5 měsíci +1

    Great explanation, Best wishes ever, Thanks

  • @biraj047
    @biraj047 Před 2 lety +1

    Thanks.. I had a clear understanding of models in django.

  • @swastik_short
    @swastik_short Před rokem

    Really awesome Hindi language Wale students k liye so thank you..

  • @ashilshah3376
    @ashilshah3376 Před rokem +1

    Very good explanation, thank you so much

  • @Niki-ue6fk
    @Niki-ue6fk Před 2 lety +1

    Thank you

  • @Hamzajaanmovies
    @Hamzajaanmovies Před 2 lety +2

    Once again! an Excellent Explanation from you

  • @shah-pakistan924
    @shah-pakistan924 Před 8 měsíci

    Very Impressive

  • @vinayakupadhyay4143
    @vinayakupadhyay4143 Před 2 lety +1

    Sir I am getting this error
    check_apps_ready
    raise AppRegistryNotReady("Apps aren't loaded yet.")
    django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.

  • @LetsFun_7
    @LetsFun_7 Před rokem +1

    Agr aik sy zyda model create krny hon to

  • @EducationExplorer
    @EducationExplorer Před 5 měsíci

    No change detected msg aa rha makemigrations krne me please help me.

  • @SangeetaDam
    @SangeetaDam Před rokem

    Sir, no option is coming in the django registration page

  • @nonamehere1788
    @nonamehere1788 Před 2 lety

    How to change and delete field names like name to first_name in django model
    please if any one know tell me.

  • @abhisheaksharma4595
    @abhisheaksharma4595 Před 2 lety

    why it is taking an extra 's' after service in admin panel??

  • @saqibabbasi3274
    @saqibabbasi3274 Před 3 lety +2

    11:30 (from django.contrib.admin.sites import site) ---> Shows Error ---But I solved it with this method:
    from django.contrib import admin
    from service.models import Service
    admin.site.register(Service)
    Can we go with this method?