Update new migrations and add bootstrap and leaflet-hash.js
This commit is contained in:
27
apps/map/migrations/0028_auto_20171102_2358.py
Normal file
27
apps/map/migrations/0028_auto_20171102_2358.py
Normal file
@ -0,0 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.6 on 2017-11-02 23:58
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('map', '0027_auto_20171102_2346'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Shapefile',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('file', models.FileField(upload_to='shapefiles/')),
|
||||
],
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='casestudy',
|
||||
name='shapefiles',
|
||||
field=models.ManyToManyField(to='map.Shapefile'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user