Browse Source

Missing dummy migration

Fabs 10 years ago
parent
commit
2fe7c64d61
1 changed files with 20 additions and 0 deletions
  1. 20 0
      coin/offers/migrations/0004_auto_20150120_2309.py

+ 20 - 0
coin/offers/migrations/0004_auto_20150120_2309.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('offers', '0003_offer_non_billable'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='offer',
+            name='non_billable',
+            field=models.BooleanField(default=False, help_text="L'offre ne sera pas factur\xe9e par la commande charge_members", verbose_name="n'est pas facturable"),
+            preserve_default=True,
+        ),
+    ]