Re: GSOC 2023 Discussion and Feedback: Database-level Cascades

2023-03-29 Thread David Sanders
> > Thank you for your suggestion and nice implementation example. I would try > to include that approach too. > No, that was just an example of a workaround without any of the benefits of Django's emulation – the presence of a workaround often goes into determining whether it's worth working on a

Re: GSOC 2023 Discussion and Feedback: Database-level Cascades

2023-03-29 Thread Akash Sen
Hi David, Thank you for your suggestion and nice implementation example. I would try to include that approach too. *Regards,* Akash Kumar Sen LinkedIn | GitHub On Thursday, March 30, 2023 at 5:00:10 A

Re: GSOC 2023 Discussion and Feedback: Database-level Cascades

2023-03-29 Thread charettes
The difficulty of switching to database level constraint effectively resides in how your lose the great parts of cascade deletion emulations most notably signals post and pre-delete signals. If you're willing to make this compromise then you must make sure that all cycle of model relationships

The problem of versioning a large project.

2023-03-29 Thread Alex Sonar
The problem of versioning a large project. Hi guys, I really got stuck with the challenge, with the design of versioning for a large project. Now we have organized versioning, where our project is divided into separate GIT repositories which are created for each application. The new necessit

Re: Feedback for my draft proposal

2023-03-29 Thread Jacob Rief
Hi Jayant, before inventing the wheel a second time, did you have a look at these Cookiecutter templates? https://github.com/cookiecutter/cookiecutter-django They probably are all you need for the purpose you're proposing. – Jacob -- You received this message because you are subscribed to the

GSOC 2023

2023-03-29 Thread Barhamou Hama
Dear Django Staff, I would like to express my interest in working on tickets #5929 and #34277 as GSoC project 2023. I assigned myself these tickets several months ago and I am aware of the complexity of these tasks, but I am willing to put my full effort into solving them. I would like to info

Re: Feedback for my draft proposal

2023-03-29 Thread Carlton Gibson
Hi Jayant. This sounds like a good idea for an ecosystem package, but I think it's the kind of thing that's out-of-scope for a GSoC project I'm afraid. 😬 Kind Regards, Carlton On Tuesday, 28 March 2023 at 20:27:47 UTC+2 jayant khanna wrote: > Hello everyone, > I have started this conversat

Re: GSOC 2023 Discussion and Feedback: Database-level Cascades

2023-03-29 Thread Carlton Gibson
Hey David. Nice example! I've done this, again just PostgreSQL, overriding the schema editor's sql_create_fk and sql_create_column_inline_fk to add to the necessary ON DELETE (for an FK subclass), but doing it with a constraint is a lovely touch. (I shall play with that 😜) I didn't look at