forked from uncloud/uncloud
18 lines
461 B
Python
18 lines
461 B
Python
|
# Generated by Django 3.1 on 2020-10-06 16:55
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('uncloud_pay', '0030_auto_20201006_1640'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddConstraint(
|
||
|
model_name='producttorecurringperiod',
|
||
|
constraint=models.UniqueConstraint(fields=('product', 'recurring_period'), name='recurring_period_once_per_product'),
|
||
|
),
|
||
|
]
|