Re: UNIQUE constraint failed: matrixapp_bookplot.user_id

2022-02-05 Thread Jason
A bit of a hint about your db schema, do you want a user ID to be one to one with each book plot? also, why is your primary key a string field? On Saturday, February 5, 2022 at 10:43:05 AM UTC-5 armaan...@gmail.com wrote: > Hello everyone, > > when i am trying to add uuid primary key , I am

Formsets

2022-02-05 Thread Steven Smith
Hello all! I find formsets wildly useful...but very difficult to architect. I have them working...But I am running into a commonly documented problem...They are slow as you build up the number of fields and queries. Are there any general tips that can be used or share on how to improve

Re: Ongoing project

2022-02-05 Thread Dev Burna
You can message https://t.me/+InYy2EoKIKQxOWY0 Sent from my iPhone > On 5 Feb 2022, at 4:39 PM, Sarwar Zahan wrote: > > Is this project completed? If so then can we get the source code? > >> On Saturday, 26 December 2020 at 23:54:52 UTC+6 sgsmri...@gmail.com wrote: >> I am interested too. >>

Re: Ongoing project

2022-02-05 Thread Sarwar Zahan
Is this project completed? If so then can we get the source code? On Saturday, 26 December 2020 at 23:54:52 UTC+6 sgsmri...@gmail.com wrote: > I am interested too. > > On Fri, Dec 25, 2020 at 8:25 PM RAJANI GUPTA wrote: > >> I'll also wanted to join the team. >> >> Rajani >> >> On Fri, 18 Dec

Re: Django ContentTypes required?

2022-02-05 Thread Chaos Chameleon
hello.I have the same problem,can you share how to sovling this? thanks very much. I just remove the default apps of INSTALLED_APPS, too 在2020年7月10日星期五 UTC+8 23:53:19 写道: > Dan, > > Thank you so much. I was able to get it figured out after I smoothed out > an issue with the database. My

UNIQUE constraint failed: matrixapp_bookplot.user_id

2022-02-05 Thread Armaan Alam
Hello everyone, when i am trying to add uuid primary key , I am getting this error UNIQUE constraint failed: matrixapp_bookplot.user_id what is wrong here class BookPlot(models.Model): ref_id = models.CharField(max_length=25) code = str(uuid.uuid4()).replace("-",