ecommerce/orders/migrations/0003_auto_20180802_0823.py
2018-09-10 23:16:35 +03:00

28 lines
772 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2018-08-02 08:23
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('billing', '0002_auto_20180801_1339'),
('orders', '0002_auto_20180801_1332'),
]
operations = [
migrations.AddField(
model_name='order',
name='active',
field=models.BooleanField(default=True),
),
migrations.AddField(
model_name='order',
name='billing_profile',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile'),
),
]