Class BaseDatabaseSchemaEditor
This class and its subclasses are responsible for emitting schema-changing statements to the databases - model creation/removal/alteration, field renaming, index fiddling, and so on.
Declaration
class BaseDatabaseSchemaEditor
source linkDocumentation
Methods
Overrides
This method is overriden in:
▶ def __exit__(self, exc_type, exc_value, traceback) Overrides
This method is overriden in:
▶ def __init__(self, connection, collect_sql=False, atomic=True) Overrides
This method is overriden in:
▶ def add_constraint(self, model, constraint) Add a constraint to a model.
Overrides
This method is overriden in:
▶ def add_field(self, model, field) Create a field on a model. Usually involves adding a column, but may involve adding a table instead (for M2M fields).
Overrides
This method is overriden in:
▶ def add_index(self, model, index) Add an index on a model.
Overrides
This method is overriden in:
▶ def alter_db_table(self, model, old_db_table, new_db_table) Rename the table a model points to.
Overrides
This method is overriden in:
▷ def alter_db_tablespace(self, model, old_db_tablespace, new_db_tablespace) Move a model's table between tablespaces.
▶ def alter_field(self, model, old_field, new_field, strict=False) Allow a field's type, uniqueness, nullability, default, column,
constraints, etc. to be modified.
`old_field` is required to compute the necessary changes.
If `strict` is True, raise errors if the old column does not match
`old_field` precisely.
Overrides
This method is overriden in:
▷ def alter_index_together(self, model, old_index_together, new_index_together) Deal with a model changing its index_together. The input index_togethers must be doubly-nested, not the single-nested ["foo", "bar"] format.
▷ def alter_unique_together(self, model, old_unique_together, new_unique_together) Deal with a model changing its unique_together. The input unique_togethers must be doubly-nested, not the single-nested ["foo", "bar"] format.
▶ def column_sql(self, model, field, include_default=False) Take a field and return its column definition. The field must already have had set_attributes_from_name() called.
Overrides
This method is overriden in:
▶ def create_model(self, model) Create a table and any accompanying indexes or unique constraints for the given `model`.
Overrides
This method is overriden in:
▶ def delete_model(self, model) Delete a model from the database.
Overrides
This method is overriden in:
▷ def effective_default(self, field) Return a field's effective database default value.
▷ def execute(self, sql, params=()) Execute the given SQL statement, with optional parameters.
▶ def prepare_default(self, value) Only used for backends which have requires_literal_defaults feature
Overrides
This method is overriden in:
▶ def quote_value(self, value) Return a quoted version of the value so it's safe to use in an SQL
string. This is not safe against injection from user code; it is
intended only for use in making SQL scripts or preparing default values
for particularly tricky backends (defaults are not user-defined, though,
so this is safe).
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def remove_field(self, model, field) Remove a field from a model. Usually involves deleting a column, but for M2Ms may involve deleting a table.
Overrides
This method is overriden in:
▶ def remove_index(self, model, index) Remove an index from a model.
Overrides
This method is overriden in:
▶ def skip_default(self, field) Some backends don't accept default values for certain columns types (i.e. MySQL longtext and longblob).
Overrides
This method is overriden in:
▷ def table_sql(self, model) Take a model and return its table definition.
Subclasses
Reexports