home / django_tickets

django_tickets

Custom SQL query returning 1 row (hide)

Query parameters

This data as json, CSV

idcreatedchangetimelast_pulled_from_tracstagestatuscomponenttypeseverityversionresolutionsummarydescriptionownerreporterkeywordseasyhas_patchneeds_better_patchneeds_testsneeds_docsui_ux
419 2005-08-26 04:23:46 2006-10-22 16:30:00 2022-03-06 03:20:39.685299 Unreviewed closed Metasystem enhancement enhancement   duplicate Create meta.AbstractModel {{{ #!python class BaseModel(meta.Model): foo = meta.CharField(maxlength=200) class FirstChild(BaseModel): bar = meta.CharField(maxlength=10) class SecondChild(BaseModel): bar = meta.CharField(maxlength=10) }}} In this example, {{{BaseModel}}} only exists as an "abstract class" -- its only purpose is to be extended. We don't want to install SQL for it, and we don't want it to be available via the API. So we could introduce a {{{meta.AbstractModel}}} for models that serve this purpose. adrian adrian   0 0 0 0 0 0
Powered by Datasette · Queries took 33.397ms