ee79877a27
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
33 lines
862 B
Python
33 lines
862 B
Python
# Generated by Django 3.0.8 on 2020-08-01 23:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0002_auto_20200801_2208'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='vatrate',
|
|
old_name='stop_date',
|
|
new_name='ending_date',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='vatrate',
|
|
old_name='start_date',
|
|
new_name='starting_date',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='ending_date',
|
|
field=models.DateTimeField(),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='billrecord',
|
|
name='quantity',
|
|
field=models.DecimalField(decimal_places=10, max_digits=19),
|
|
),
|
|
]
|