(self, alias, output_field=None)
| 572 | return [] |
| 573 | |
| 574 | def get_col(self, alias, output_field=None): |
| 575 | if alias == self.model._meta.db_table and ( |
| 576 | output_field is None or output_field == self |
| 577 | ): |
| 578 | return self.cached_col |
| 579 | from django.db.models.expressions import Col |
| 580 | |
| 581 | return Col(alias, self, output_field) |
| 582 | |
| 583 | @property |
| 584 | def choices(self): |