You are a God, literally making my life easier, most concise, on point, well established tutorials out there
@veryacademy2 жыл бұрын
Thanks!
@bekzodnegmatillaev75284 жыл бұрын
Best django channel out there
@veryacademy4 жыл бұрын
Thank you Bekzod - I will keep trying to make better content for you all
@elias-earaujo Жыл бұрын
excellent content! I really needed to learn this! Thanks! Greetings from Brazil!
@nurmukhammad_30k2 жыл бұрын
Super appreciating this video
@andromeda_yt_3 жыл бұрын
Hello. This is such a wonderful series! You make some of the best coding tutorials out there, thanks!
@veryacademy3 жыл бұрын
Andromeda, thank you - really appreciated.
@semantic_error3 жыл бұрын
Thank you very much for this video series. It is really the best series on Django ORM.
@veryacademy3 жыл бұрын
Glad you enjoy it! Once I get back setup with recording I will improve upon it and add some more
@HemantSahu-kj2qb2 жыл бұрын
Thank you for making these videos. You have made such complex topic easy to understand
@arbaaz91944 жыл бұрын
Very cool and descriptive tutorial among very few. A bright future is coming. Wish you all the best and thank you for the tut.
@veryacademy4 жыл бұрын
Thanks Arbaaz, as long as it is useful to someone I will carry on making tutorials regardless of the future prospects 👍
@tochimclaren4 жыл бұрын
Thanks! Nice tutorials, I hope to start my channel someday. Many thanks for your work.
@veryacademy4 жыл бұрын
Best of luck!
@KevinTempelx4 жыл бұрын
Thank you!!
@veryacademy4 жыл бұрын
You're welcome!
@dh1ao4 жыл бұрын
Thanks for all your work. Is there a chance of a video regarding array/lists in ORM Django models besides postgres?
@veryacademy4 жыл бұрын
Sure there is - what exactly were you thinking? This could mean many things - array/lists in ORM Django models besides postgres?
@dh1ao4 жыл бұрын
@@veryacademy I would like to store an array of Python objects in a sql database other than postgres. For postgres there is a model.array_field. Maybe a json serializer could do a similar job for let's say mysql? Thanks for reading
@Horen_Usuf Жыл бұрын
Thanks, can I have the link for all the series
@kiorepaul62784 жыл бұрын
Hi again. Thanks for making such great lecture series. I felt you should have covered queries involving related_name. And are you planning on a series on orm/sql queries optimisation i.e how to minimise number of db queries?
@Shivam_Manswalia3 жыл бұрын
So while making migrations it didn't created a table for base class why??
@veryacademy3 жыл бұрын
class Publishable(models.Model): title = models.CharField(...) date = models.DateField(....) class Meta: abstract = True If for example you set the meta to abstract - any other tables using this abstract class will copy title and data to that class - this table Publishable will not be created. A benefit is that it is a way of creating fields that would be replicated in multiple tables - saving you having to write these fields out multiple times
@manishranjan99823 жыл бұрын
For class A it has meta derived from BaseMeta so why don't A is also abstract=True?
@veryacademy3 жыл бұрын
Hi, I cant remember what is in the video but - key here is that abstract=True on a model will mean that it is not actually created in the database - all over classes or models connected will just inherit (make a copy of) the fields. If you dont use abstract true all models are created in the database
@georgesmith30224 жыл бұрын
So if I want to have different types of users, each with different fields, for instance Students and Teachers, should I choose a User model and inherit from there? or should I create a different Profile for each and use a onetoone relationship with the user model?
@veryacademy4 жыл бұрын
Good question - how about 1 user table and additional tables for students and teachers 1to1
@pallyweb4 жыл бұрын
Hi bro, In your tutorials VS Code provides very good IntelliSense . However , I am unable to get much out of VS Code for Django/Python IntelliSense . Kindly help in this regard. Thanks :)
@veryacademy4 жыл бұрын
code.visualstudio.com/docs/languages/python
@pallyweb4 жыл бұрын
@@veryacademy Thanks :)
@AhmedTheCoder4 жыл бұрын
What if I have three types of reports( daily, weekly, monthly) Different fields, they are have common relationship with two models (staff, machines) That have lot of fields, I want to make a relation between these models, can I use inherited models, or foreign keys? Help!
@rezarostami8914 жыл бұрын
very good
@veryacademy4 жыл бұрын
Thank you! Cheers!
@sambad84292 жыл бұрын
the proxy model part is very incomplete
@veryacademy2 жыл бұрын
Thanks Samba, at the time it met the needs of what I needed. I will no doubt come around on this again in the future