How Filter rows in django?

2023-01-08 Thread Prashanth Patelc
Hi , How to filter table rows in django using html , bootstrap and js? Example : I have table called some , contains 50 rows a , b, c, d, e ,,,more If I select a,b row need to show both rows data only also remaining as per selection need to show ? -- You received this message because you

Re: Data migrations ran multiple times during deploy

2023-01-08 Thread Aviv Avitan
We experience the same problems and those races are probably inevitable 1. django-syzygy (quroum) may solves this issue as it will use a semaphore to prevent any migrations before seeing "X migrates". this will prevent any races. On the same note, it will introduce migrate --pre which should avo

Re: How to solve primary key error in django?

2023-01-08 Thread Aviv Avitan
We have a lot of such fields in our database and never seen such an error. What I can think that may happen is that some row already assigned the id of 0, and changing the column type or adding a id column (which probably overrides the automatic one django generates for each model), and now it c