Add migration
This commit is contained in:
parent
33aeaf7ddb
commit
c69affc9a1
1 changed files with 25 additions and 0 deletions
25
hosting/migrations/0066_auto_20230727_0812.py
Normal file
25
hosting/migrations/0066_auto_20230727_0812.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.4 on 2023-07-27 08:12
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('hosting', '0065_auto_20201231_1041'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='genericproduct',
|
||||
name='product_price',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=10),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='genericproduct',
|
||||
name='product_vat',
|
||||
field=models.DecimalField(decimal_places=4, default=0, max_digits=10),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue