mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-06 01:46:27 +00:00
21 lines
518 B
Python
21 lines
518 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.7 on 2018-09-08 10:58
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('printer', '0005_jobwithoptions_filename'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='jobwithoptions',
|
||
|
name='price',
|
||
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=5, verbose_name='price'),
|
||
|
),
|
||
|
]
|