class documentation

class TableColumns(Table):

Known subclasses: django.db.backends.ddl_references.Columns, django.db.backends.ddl_references.Expressions, django.db.backends.ddl_references.ForeignKeyName, django.db.backends.ddl_references.IndexName

View In Hierarchy

Base class for references to multiple columns of a table.
Method __init__ Undocumented
Method references​_column Return whether or not this instance references the specified column.
Method rename​_column​_references Rename all references to the old_column to the new_column.
Instance Variable columns Undocumented
Instance Variable table Undocumented

Inherited from Table:

Method __str__ Undocumented
Method references​_table Return whether or not this instance references the specified table.
Method rename​_table​_references Rename all references to the old_name to the new_table.
Instance Variable quote​_name Undocumented

Inherited from Reference (via Table):

Method __repr__ Undocumented
def references_column(self, table, column):
Return whether or not this instance references the specified column.
def rename_column_references(self, table, old_column, new_column):
columns =