cbd5a08ae7
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
23 lines
635 B
Python
23 lines
635 B
Python
# Generated by Django 3.0.6 on 2020-08-01 16:04
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0003_auto_20200621_1442'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='order',
|
|
name='replaced_by',
|
|
),
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='replaces',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='replaced_by', to='uncloud_pay.Order'),
|
|
),
|
|
]
|