Skip to content

Commit 78d50ad

Browse files
committed
added missing migration for snapshot id
1 parent 8d22c41 commit 78d50ad

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.0.3 on 2020-05-10 17:42
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('gsmap', '0017_auto_20200429_2118'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='snapshot',
15+
name='id',
16+
field=models.CharField(max_length=8, primary_key=True, serialize=False, unique=True),
17+
),
18+
]

0 commit comments

Comments
 (0)