|
@@ -0,0 +1,20 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+# Generated by Django 1.11 on 2017-05-07 14:10
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('services', '0015_auto_20170507_0219'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='resourceallocation',
|
|
|
+ name='notes',
|
|
|
+ field=models.TextField(blank=True, default=''),
|
|
|
+ ),
|
|
|
+ ]
|