Django data migration can help in your case. https://docs.djangoproject.com/en/4.1/topics/migrations/#data-migrations
1. add empty migration 2. add your data manipulation logic there. On Fri, Aug 12, 2022 at 3:12 AM M Adnan <[email protected]> wrote: > When we create a modal or change a modal than we use these two commands > python manage.py makemigrations here our table are created and to insert > these table into database this command is necessary python manage.py > migrate. I hope you will understand this. > > On Fri, 12 Aug 2022, 12:56 am Stu.Axon, <[email protected]> wrote: > >> I've got a table that has a list of classnames (that aren't models) that >> are subclasses of a class. >> >> I'd like to hook into makemigrations and generate data migrations to add >> / remove data as required - any idea the best way I can do this ? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/765737bd-2139-45ef-a6ed-6eb802d58f6cn%40googlegroups.com >> <https://groups.google.com/d/msgid/django-users/765737bd-2139-45ef-a6ed-6eb802d58f6cn%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CABNyTSrTO3twOvr%3D4JiKiJJt-tOQxqcC%2BwCz3y9dTLKDs9YWgw%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CABNyTSrTO3twOvr%3D4JiKiJJt-tOQxqcC%2BwCz3y9dTLKDs9YWgw%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- Thanks & Regards, *Durai pandianEmail : [email protected] <[email protected]> * -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJsc%2BoYOjZ7OTqzunVegYME1zNuRs2fTpzDMxpp6gR09pqB3Zw%40mail.gmail.com.

