1
0
mirror of https://github.com/django/django.git synced 2025-04-01 12:06:43 +00:00

Mark model renaming as irreversible for now (#22248)

This commit is contained in:
Andrew Godwin 2014-03-19 21:25:26 -07:00
parent 81f5408c7a
commit 831ce69cbb

View File

@ -98,6 +98,8 @@ class RenameModel(Operation):
Renames a model.
"""
reversible = False
def __init__(self, old_name, new_name):
self.old_name = old_name
self.new_name = new_name