mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
18 lines
445 B
Python
18 lines
445 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("accounting", "0004_auto_20161005_1505")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="operation",
|
|
name="remark",
|
|
field=models.CharField(
|
|
null=True, max_length=128, blank=True, verbose_name="comment"
|
|
),
|
|
)
|
|
]
|