Skip to content

Commit

Permalink
Merge pull request #6 from Terralego/fix_migrations
Browse files Browse the repository at this point in the history
Fix migrations
  • Loading branch information
submarcos committed Sep 25, 2019
2 parents f64f0e7 + 323ee16 commit bf59c5b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

0.3.2 (2019-09-24)
-----------------------

### Fix

* Fix migration file that prevent old terracommon app migration


0.3.1 (2019-09-11)
-----------------------

Expand Down
2 changes: 1 addition & 1 deletion geostore/VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
2 changes: 1 addition & 1 deletion geostore/migrations/0027_layergroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Migration(migrations.Migration):
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
('name', models.CharField(max_length=256, unique=True)),
('slug', models.SlugField(unique=True)),
('slug', models.SlugField()),
('layers', models.ManyToManyField(to='geostore.Layer', related_name='layer_groups')),
],
options={
Expand Down

0 comments on commit bf59c5b

Please sign in to comment.