mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
23 lines
629 B
Python
23 lines
629 B
Python
# Generated by Django 2.1 on 2019-01-06 03:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('preferences', '0003_auto_20181223_1440'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='historicalpaymentmethod',
|
|
name='icon',
|
|
field=models.CharField(blank=True, max_length=255, verbose_name='Icône'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='paymentmethod',
|
|
name='icon',
|
|
field=models.CharField(blank=True, max_length=255, verbose_name='Icône'),
|
|
),
|
|
]
|