mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
# Generated by Django 1.11.18 on 2019-01-28 13:04
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("corporate", "0004_licenseledger"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name="customerplan",
|
|
old_name="next_billing_date",
|
|
new_name="next_invoice_date",
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="customerplan",
|
|
name="billed_through",
|
|
),
|
|
migrations.AddField(
|
|
model_name="customerplan",
|
|
name="invoiced_through",
|
|
field=models.ForeignKey(
|
|
null=True,
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name="+",
|
|
to="corporate.LicenseLedger",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="customerplan",
|
|
name="invoicing_status",
|
|
field=models.SmallIntegerField(default=1),
|
|
),
|
|
]
|