update
This commit is contained in:
31
rog/migrations/0006_auto_20220222_2308.py
Normal file
31
rog/migrations/0006_auto_20220222_2308.py
Normal file
@ -0,0 +1,31 @@
|
||||
# Generated by Django 3.2.9 on 2022-02-22 14:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rog', '0005_favorite_joinedevent_layer_location_roguser_systemsettings_travellist_travelpoint'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ShapeLayers',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=255, verbose_name='Shape Layer')),
|
||||
('file', models.FileField(blank=True, upload_to='%y%m%d')),
|
||||
('uploaded_date', models.DateField(auto_now_add=True)),
|
||||
('layerof', models.IntegerField(choices=[(1, 'locations')], default=1)),
|
||||
('table_name', models.CharField(blank=True, max_length=255, verbose_name='Table name')),
|
||||
],
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='Layer',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='location',
|
||||
name='file',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user