cbd5a08ae7
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
24 lines
768 B
Python
24 lines
768 B
Python
# Generated by Django 3.0.6 on 2020-08-01 16:26
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0004_auto_20200801_1604'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='one_time_price',
|
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=10, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='recurring_price',
|
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=10, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
]
|