我做了一个迁移,添加了一个新表,想要恢复它并删除迁移,而不创建一个新的迁移。

我该怎么做?是否有恢复上次迁移的命令,然后我可以简单地删除迁移文件?


当前回答

在恢复之前不要删除迁移文件。我犯了这个错误,没有迁移文件,数据库就不知道要删除什么东西。

python manage.py showmigrations
python manage.py migrate {app name from show migrations} {00##_migration file.py}

如果你想恢复所有的迁移,使用0作为迁移的名称:

python manage.py migrate app_name_here zero

删除迁移文件。一旦您的模型中有了所需的迁移……

python manage.py makemigrations
python manage.py migrate

其他回答

Alasdair的回答涵盖了基本问题

通过./manage.py showmigrations确定您想要的迁移 使用应用程序名称和迁移名称进行迁移

但应该指出的是,并非所有的迁移都可以逆转。如果Django没有规则来执行反转,就会发生这种情况。对于通过./manage.py makemigrations自动进行迁移的大多数更改,反转是可能的。然而,自定义脚本将需要同时写正向和反向,如示例中所述:

https://docs.djangoproject.com/en/1.9/ref/migration-operations/

如何进行无操作逆转

如果您有一个RunPython操作,那么您可能只是想在不编写逻辑上严格的反转脚本的情况下退出迁移。下面对文档中的示例的快速修改(上面的链接)允许这样做,使数据库保持在应用迁移之后的相同状态,即使是在反转它之后。

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models

def forwards_func(apps, schema_editor):
    # We get the model from the versioned app registry;
    # if we directly import it, it'll be the wrong version
    Country = apps.get_model("myapp", "Country")
    db_alias = schema_editor.connection.alias
    Country.objects.using(db_alias).bulk_create([
        Country(name="USA", code="us"),
        Country(name="France", code="fr"),
    ])

class Migration(migrations.Migration):

    dependencies = []

    operations = [
        migrations.RunPython(forwards_func, lambda apps, schema_editor: None),
    ]

这适用于Django 1.8、1.9


更新:更好的编写方法是将上面代码片段中的lambda apps, schema_editor: None替换为migrations.RunPython.noop。它们在功能上是一样的。(来源:评论)

下面是我的解决方案,因为上面的解决方案并没有真正涵盖使用RunPython时的用例。

可以通过ORM with访问该表

from django.db.migrations.recorder import MigrationRecorder

>>> MigrationRecorder.Migration.objects.all()
>>> MigrationRecorder.Migration.objects.latest('id')
Out[5]: <Migration: Migration 0050_auto_20170603_1814 for model>
>>> MigrationRecorder.Migration.objects.latest('id').delete()
Out[4]: (1, {u'migrations.Migration': 1})

因此,您可以查询这些表并删除与您相关的条目。这样您就可以详细地进行修改。使用RynPython迁移,您还需要处理添加/更改/删除的数据。上面的例子只显示了如何通过Djang ORM访问表。

您可以通过迁移到以前的迁移进行恢复。

例如使用下面的命令:

./manage.py migrate example_app one_left_to_the_last_migration

然后删除last_migration文件。

我在1.9.1中这样做了(删除最后或最新创建的迁移):

Rm <appname>/migrations/<migration #>* .使用实例 例如:rm myapp/migrations/0011* 登录到数据库并运行SQL语句(本例中为postgres) 删除django_migrations中名称为“0011%”的位置;

然后,我可以创建新的迁移,以刚才删除的迁移编号(在本例中为11)开始。

首先:找到你的应用程序之前的迁移,

Python manage.py showmigrations

eg:

bz
 [X] 0001_initial
 [ ] 0002_bazifff


如果您想要回滚0002_baziff迁移,

python manage.py migrate bz 0001_initial

如果要回滚0001_initial或all

python manage.py migrate bz zero

似乎只能回退0001