From 9f6477e5f174d19cc3e70772ed9b21c5ced63fb1 Mon Sep 17 00:00:00 2001 From: Robert Einsle Date: Fri, 10 Feb 2017 21:23:14 +0100 Subject: [PATCH] rename field --- billard/migrations/0011_auto_20170210_2122.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 billard/migrations/0011_auto_20170210_2122.py diff --git a/billard/migrations/0011_auto_20170210_2122.py b/billard/migrations/0011_auto_20170210_2122.py new file mode 100644 index 0000000..419c8f9 --- /dev/null +++ b/billard/migrations/0011_auto_20170210_2122.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-02-10 20:22 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('billard', '0010_auto_20170210_2040'), + ] + + operations = [ + migrations.AlterField( + model_name='locationdata', + name='client_id', + field=models.UUIDField(verbose_name='Client-ID'), + ), + ]