diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-17 21:27:01 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-17 21:27:01 +0100 |
commit | 4941d230e259584c9eebd8963b2354ae780997a2 (patch) | |
tree | 9e274d175c07b90cd670dc80f07367bff11f15e5 /core/migrations | |
parent | 660479d692160e86fd269659d7e7fe19cba07a81 (diff) | |
download | troggle-4941d230e259584c9eebd8963b2354ae780997a2.tar.gz troggle-4941d230e259584c9eebd8963b2354ae780997a2.tar.bz2 troggle-4941d230e259584c9eebd8963b2354ae780997a2.zip |
TEMPLATES done for dj 1.9.13
Diffstat (limited to 'core/migrations')
-rw-r--r-- | core/migrations/0002_auto_20200617_1631.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/core/migrations/0002_auto_20200617_1631.py b/core/migrations/0002_auto_20200617_1631.py new file mode 100644 index 0000000..6a6abe4 --- /dev/null +++ b/core/migrations/0002_auto_20200617_1631.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='survexblock', + name='legsall', + field=models.IntegerField(), + ), + migrations.AlterField( + model_name='survexblock', + name='legssplay', + field=models.IntegerField(), + ), + migrations.AlterField( + model_name='survexblock', + name='legssurfc', + field=models.IntegerField(), + ), + migrations.AlterField( + model_name='survexblock', + name='totalleglength', + field=models.FloatField(), + ), + ] |