|
@@ -0,0 +1,20 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+# Generated by Django 1.11.2 on 2017-06-15 11:30
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('services', '0034_auto_20170613_1327'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='antenna',
|
|
|
+ name='orientation',
|
|
|
+ field=models.IntegerField(blank=True, null=True, verbose_name='Orientation (°)'),
|
|
|
+ ),
|
|
|
+ ]
|