12

モデルを既存のデータで前方移行しようとしています。モデルには、unique=True および null=False という制約を持つ新しいフィールドがあります。私がする時

./manage.py schemamigration myapp --auto

South では、次のように尋ねることで、新しいフィールドのデフォルト値を指定できます。

Specify a one-off value to use for existing columns now

通常はこれを None に設定しますが、このフィールドは一意である必要があるため、次の方法で South に一意の値を渡すことができるかどうか疑問に思っていました:

 >>> import uuid; uuid.uuid1().hex[0:35]

これにより、エラーメッセージが表示されます

! Invalid input: invalid syntax 

コマンドライン経由で移行するときに、South のランダムな一意のデフォルト値を渡すことができるかどうかのアイデアはありますか?

ありがとう。

4

5 に答える 5

30

残念ながらdatetime、スキーマ移行で 1 回限りの値として使用できるのはモジュールのみです。

ただし、これを 3 つの移行に分割することで、同じ効果を得ることができます。

  • 制約なしでモデルに新しいフィールドを追加します (null=True、unique=False を使用)
  • データ移行を使用して、UUID を新しいフィールドに追加します
  • 新しいフィールドに制約を追加します (null=False、unique=True)

データ移行に関するチュートリアル: http://south.readthedocs.org/en/0.7.6/tutorial/part3.html#data-migrations

于 2012-11-28T13:11:57.157 に答える
7

django 1.7+ では、次のことができます。最初に、インデックスも一意も持たないフィールドを追加します。次に、一意の値を割り当て (名前に基づいて、作成する必要がある slugify メソッドを使用しました)、最後にフィールドを再度変更して、インデックスと一意の属性を追加します。

from django.db import migrations
import re
import django.contrib.postgres.fields
from common.utils import slugify
import django.core.validators


def set_slugs(apps, schema_editor):
    categories = apps.get_model("myapp", "Category").objects.all()
    for category in categories:
        category.slug = slugify(category.name)
        category.save()


class Migration(migrations.Migration):

    dependencies = [
        ('myapp', '0034_auto_20150906_1936'),
    ]

    operations = [
        migrations.AddField(
            model_name='category',
            name='slug',
            field=models.CharField(max_length=30, validators=[django.core.validators.MinLengthValidator(2), django.core.validators.RegexValidator(re.compile('^[0-9a-z-]+$'), 'Enter a valid slug.', 'invalid')], help_text='Required. 2 to 30 characters and can only contain a-z, 0-9, and the dash (-)', unique=False, db_index=False, null=True),
            preserve_default=False,
        ),
        migrations.RunPython(set_slugs),
        migrations.AlterField(
            model_name='category',
            name='slug',
            field=models.CharField(help_text='Required. 2 to 30 characters and can only contain a-z, 0-9, and the dash (-)', unique=True, max_length=30, db_index=True, validators=[django.core.validators.MinLengthValidator(2), django.core.validators.RegexValidator(re.compile('^[0-9a-z-]+$'), 'Enter a valid slug.', 'invalid')]),
        ),
    ]
于 2015-09-30T19:02:17.777 に答える
3

ユニークなフィールドの移行に関する Django の公式ハウツーは次のとおりです

Migrations that add unique fields
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 Applying a "plain" migration that adds a unique non-nullable field to a table
 with existing rows will raise an error because the value used to populate
 existing rows is generated only once, thus breaking the unique constraint.

 Therefore, the following steps should be taken. In this example, we'll add a
 non-nullable :class:`~django.db.models.UUIDField` with a default value. Modify
 the respective field according to your needs.

 * Add the field on your model with ``default=...`` and ``unique=True``
   arguments. In the example, we use ``uuid.uuid4`` for the default.

 * Run the :djadmin:`makemigrations` command.

 * Edit the created migration file.

   The generated migration class should look similar to this::

     class Migration(migrations.Migration):

         dependencies = [
             ('myapp', '0003_auto_20150129_1705'),
         ]

         operations = [
             migrations.AddField(
                 model_name='mymodel',
                 name='uuid',
                 field=models.UUIDField(max_length=32, unique=True, default=uuid.uuid4),
             ),
         ]

   You will need to make three changes:

   * Add a second :class:`~django.db.migrations.operations.AddField` operation
     copied from the generated one and change it to
     :class:`~django.db.migrations.operations.AlterField`.

   * On the first operation (``AddField``), change ``unique=True`` to
     ``null=True`` -- this will create the intermediary null field.

   * Between the two operations, add a
     :class:`~django.db.migrations.operations.RunPython` or
     :class:`~django.db.migrations.operations.RunSQL` operation to generate a
     unique value (UUID in the example) for each existing row.

   The resulting migration should look similar to this::

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

     from django.db import migrations, models
     import uuid

     def gen_uuid(apps, schema_editor):
         MyModel = apps.get_model('myapp', 'MyModel')
         for row in MyModel.objects.all():
             row.uuid = uuid.uuid4()
             row.save()

     class Migration(migrations.Migration):

         dependencies = [
             ('myapp', '0003_auto_20150129_1705'),
         ]

         operations = [
             migrations.AddField(
                 model_name='mymodel',
                 name='uuid',
                 field=models.UUIDField(default=uuid.uuid4, null=True),
             ),
             # omit reverse_code=... if you don't want the migration to be reversible.
             migrations.RunPython(gen_uuid, reverse_code=migrations.RunPython.noop),
             migrations.AlterField(
                 model_name='mymodel',
                 name='uuid',
                 field=models.UUIDField(default=uuid.uuid4, unique=True),
             ),
         ]
* Now you can apply the migration as usual with the :djadmin:`migrate` command.

   Note there is a race condition if you allow objects to be created while this
   migration is running. Objects created after the ``AddField`` and before
   ``RunPython`` will have their original ``uuid``’s overwritten.
于 2016-01-01T14:53:24.747 に答える