2013-07-30 19:34:31 +08:00
|
|
|
from django.db import router
|
2013-05-30 00:47:10 +08:00
|
|
|
from .base import Operation
|
|
|
|
|
|
|
|
|
|
|
|
class AddField(Operation):
|
|
|
|
"""
|
|
|
|
Adds a field to a model.
|
|
|
|
"""
|
|
|
|
|
2013-06-19 23:41:04 +08:00
|
|
|
def __init__(self, model_name, name, field):
|
2013-07-02 18:19:02 +08:00
|
|
|
self.model_name = model_name.lower()
|
2013-05-30 00:47:10 +08:00
|
|
|
self.name = name
|
2013-06-19 23:41:04 +08:00
|
|
|
self.field = field
|
2013-05-30 00:47:10 +08:00
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
2013-06-19 23:41:04 +08:00
|
|
|
state.models[app_label, self.model_name.lower()].fields.append((self.name, self.field))
|
2013-05-30 00:47:10 +08:00
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
2013-05-31 01:24:20 +08:00
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
|
|
|
to_model = to_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, to_model):
|
|
|
|
schema_editor.add_field(from_model, to_model._meta.get_field_by_name(self.name)[0])
|
2013-05-30 00:47:10 +08:00
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
2013-05-31 01:24:20 +08:00
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, from_model):
|
|
|
|
schema_editor.remove_field(from_model, from_model._meta.get_field_by_name(self.name)[0])
|
2013-05-30 00:47:10 +08:00
|
|
|
|
2013-06-19 23:23:52 +08:00
|
|
|
def describe(self):
|
|
|
|
return "Add field %s to %s" % (self.name, self.model_name)
|
|
|
|
|
2013-10-03 00:33:41 +08:00
|
|
|
def __eq__(self, other):
|
|
|
|
return (
|
|
|
|
(self.__class__ == other.__class__) and
|
|
|
|
(self.name == other.name) and
|
|
|
|
(self.model_name == other.model_name) and
|
|
|
|
(self.field.deconstruct()[1:] == other.field.deconstruct()[1:])
|
|
|
|
)
|
|
|
|
|
2013-05-30 00:47:10 +08:00
|
|
|
|
|
|
|
class RemoveField(Operation):
|
|
|
|
"""
|
|
|
|
Removes a field from a model.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, model_name, name):
|
2013-07-02 18:19:02 +08:00
|
|
|
self.model_name = model_name.lower()
|
2013-05-30 00:47:10 +08:00
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
|
|
|
new_fields = []
|
|
|
|
for name, instance in state.models[app_label, self.model_name.lower()].fields:
|
|
|
|
if name != self.name:
|
|
|
|
new_fields.append((name, instance))
|
|
|
|
state.models[app_label, self.model_name.lower()].fields = new_fields
|
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
2013-05-31 01:24:20 +08:00
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, from_model):
|
|
|
|
schema_editor.remove_field(from_model, from_model._meta.get_field_by_name(self.name)[0])
|
2013-05-30 00:47:10 +08:00
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
2013-05-31 01:24:20 +08:00
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
|
|
|
to_model = to_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, to_model):
|
|
|
|
schema_editor.add_field(from_model, to_model._meta.get_field_by_name(self.name)[0])
|
2013-06-19 23:23:52 +08:00
|
|
|
|
|
|
|
def describe(self):
|
|
|
|
return "Remove field %s from %s" % (self.name, self.model_name)
|
2013-06-20 22:12:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
class AlterField(Operation):
|
|
|
|
"""
|
|
|
|
Alters a field's database column (e.g. null, max_length) to the provided new field
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, model_name, name, field):
|
2013-07-02 18:19:02 +08:00
|
|
|
self.model_name = model_name.lower()
|
2013-06-20 22:12:59 +08:00
|
|
|
self.name = name
|
|
|
|
self.field = field
|
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
|
|
|
state.models[app_label, self.model_name.lower()].fields = [
|
|
|
|
(n, self.field if n == self.name else f) for n, f in state.models[app_label, self.model_name.lower()].fields
|
|
|
|
]
|
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
|
|
|
to_model = to_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, to_model):
|
|
|
|
schema_editor.alter_field(
|
|
|
|
from_model,
|
|
|
|
from_model._meta.get_field_by_name(self.name)[0],
|
|
|
|
to_model._meta.get_field_by_name(self.name)[0],
|
|
|
|
)
|
2013-06-20 22:12:59 +08:00
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
self.database_forwards(app_label, schema_editor, from_state, to_state)
|
|
|
|
|
|
|
|
def describe(self):
|
|
|
|
return "Alter field %s on %s" % (self.name, self.model_name)
|
|
|
|
|
2013-10-03 00:33:41 +08:00
|
|
|
def __eq__(self, other):
|
|
|
|
return (
|
|
|
|
(self.__class__ == other.__class__) and
|
|
|
|
(self.name == other.name) and
|
|
|
|
(self.model_name == other.model_name) and
|
|
|
|
(self.field.deconstruct()[1:] == other.field.deconstruct()[1:])
|
|
|
|
)
|
|
|
|
|
2013-06-20 22:12:59 +08:00
|
|
|
|
|
|
|
class RenameField(Operation):
|
|
|
|
"""
|
|
|
|
Renames a field on the model. Might affect db_column too.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, model_name, old_name, new_name):
|
2013-07-02 18:19:02 +08:00
|
|
|
self.model_name = model_name.lower()
|
2013-06-20 22:12:59 +08:00
|
|
|
self.old_name = old_name
|
|
|
|
self.new_name = new_name
|
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
|
|
|
state.models[app_label, self.model_name.lower()].fields = [
|
|
|
|
(self.new_name if n == self.old_name else n, f) for n, f in state.models[app_label, self.model_name.lower()].fields
|
|
|
|
]
|
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
|
|
|
to_model = to_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, to_model):
|
|
|
|
schema_editor.alter_field(
|
|
|
|
from_model,
|
|
|
|
from_model._meta.get_field_by_name(self.old_name)[0],
|
|
|
|
to_model._meta.get_field_by_name(self.new_name)[0],
|
|
|
|
)
|
2013-06-20 22:12:59 +08:00
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
from_model = from_state.render().get_model(app_label, self.model_name)
|
|
|
|
to_model = to_state.render().get_model(app_label, self.model_name)
|
2013-07-30 19:34:31 +08:00
|
|
|
if router.allow_migrate(schema_editor.connection.alias, to_model):
|
|
|
|
schema_editor.alter_field(
|
|
|
|
from_model,
|
|
|
|
from_model._meta.get_field_by_name(self.new_name)[0],
|
|
|
|
to_model._meta.get_field_by_name(self.old_name)[0],
|
|
|
|
)
|
2013-06-20 22:12:59 +08:00
|
|
|
|
|
|
|
def describe(self):
|
|
|
|
return "Rename field %s on %s to %s" % (self.old_name, self.model_name, self.new_name)
|