is a custom model even possible

2020-12-06 Thread Joel T
Hi everyone, I'm new here and have zero clues as to how to create a model with methods that can be overridden by each instance . i.e Each instance will provide its own methods that will be called when a certain event is triggered. -- You received this message because you are subscribed to the G

Re: is a custom model even possible

2020-12-07 Thread Charles Freeman
Yes it is possible to create a custom model a u have to do is override the default django models On Mon, Dec 7, 2020, 03:57 Joel T <7thog...@gmail.com> wrote: > Hi everyone, > I'm new here and have zero clues as to how to create a model with methods > that can be overridden by each instance . i.e

Re: is a custom model even possible

2020-12-07 Thread Ryan Nowakowski
On Sun, Dec 06, 2020 at 06:00:06PM -0800, Joel T wrote: > I'm new here and have zero clues as to how to create a model with methods > that can be overridden by each instance . i.e Each instance will provide > its own methods that will be called when a certain event is triggered. Hey Joel, An in