summaryrefslogtreecommitdiffstats
path: root/0001_initial.py
blob: e5e0784f06c58a9aa0b62f48a1c4eaa0e9ded2a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations
from django.conf import settings

# created by 
# $ python manage.py makemigrations core
# in troggle/core/migrations/0001_initial.py

# Useful shorthand for db structure

class Migration(migrations.Migration):

    dependencies = [
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
    ]

    operations = [
        migrations.CreateModel(
            name='Area',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('short_name', models.CharField(max_length=100)),
                ('name', models.CharField(max_length=200, blank=True, null=True)),
                ('description', models.TextField(blank=True, null=True)),
                ('parent', models.ForeignKey(blank=True, null=True, to='core.Area')),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='Cave',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('official_name', models.CharField(max_length=160)),
                ('kataster_code', models.CharField(max_length=20, blank=True, null=True)),
                ('kataster_number', models.CharField(max_length=10, blank=True, null=True)),
                ('unofficial_number', models.CharField(max_length=60, blank=True, null=True)),
                ('explorers', models.TextField(blank=True, null=True)),
                ('underground_description', models.TextField(blank=True, null=True)),
                ('equipment', models.TextField(blank=True, null=True)),
                ('references', models.TextField(blank=True, null=True)),
                ('survey', models.TextField(blank=True, null=True)),
                ('kataster_status', models.TextField(blank=True, null=True)),
                ('underground_centre_line', models.TextField(blank=True, null=True)),
                ('notes', models.TextField(blank=True, null=True)),
                ('length', models.CharField(max_length=100, blank=True, null=True)),
                ('depth', models.CharField(max_length=100, blank=True, null=True)),
                ('extent', models.CharField(max_length=100, blank=True, null=True)),
                ('survex_file', models.CharField(max_length=100, blank=True, null=True)),
                ('description_file', models.CharField(max_length=200, blank=True, null=True)),
                ('url', models.CharField(max_length=200, blank=True, null=True)),
                ('filename', models.CharField(max_length=200)),
                ('area', models.ManyToManyField(blank=True, null=True, to='core.Area')),
            ],
            options={
                'ordering': ('kataster_code', 'unofficial_number'),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='CaveAndEntrance',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('entrance_letter', models.CharField(max_length=20, blank=True, null=True)),
                ('cave', models.ForeignKey(to='core.Cave')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='CaveDescription',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('short_name', models.CharField(max_length=50, unique=True)),
                ('long_name', models.CharField(max_length=200, blank=True, null=True)),
                ('description', models.TextField(blank=True, null=True)),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='CaveSlug',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('slug', models.SlugField(unique=True)),
                ('primary', models.BooleanField(default=False)),
                ('cave', models.ForeignKey(to='core.Cave')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='DataIssue',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('date', models.DateTimeField(auto_now_add=True)),
                ('parser', models.CharField(max_length=50, blank=True, null=True)),
                ('message', models.CharField(max_length=400, blank=True, null=True)),
            ],
            options={
                'ordering': ['date'],
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='Entrance',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('name', models.CharField(max_length=100, blank=True, null=True)),
                ('entrance_description', models.TextField(blank=True, null=True)),
                ('explorers', models.TextField(blank=True, null=True)),
                ('map_description', models.TextField(blank=True, null=True)),
                ('location_description', models.TextField(blank=True, null=True)),
                ('approach', models.TextField(blank=True, null=True)),
                ('underground_description', models.TextField(blank=True, null=True)),
                ('photo', models.TextField(blank=True, null=True)),
                ('marking', models.CharField(max_length=2, choices=[('P', 'Paint'), ('P?', 'Paint (?)'), ('T', 'Tag'), ('T?', 'Tag (?)'), ('R', 'Needs Retag'), ('S', 'Spit'), ('S?', 'Spit (?)'), ('U', 'Unmarked'), ('?', 'Unknown')])),
                ('marking_comment', models.TextField(blank=True, null=True)),
                ('findability', models.CharField(max_length=1, blank=True, null=True, choices=[('?', 'To be confirmed ...'), ('S', 'Coordinates'), ('L', 'Lost'), ('R', 'Refindable')])),
                ('findability_description', models.TextField(blank=True, null=True)),
                ('alt', models.TextField(blank=True, null=True)),
                ('northing', models.TextField(blank=True, null=True)),
                ('easting', models.TextField(blank=True, null=True)),
                ('tag_station', models.TextField(blank=True, null=True)),
                ('exact_station', models.TextField(blank=True, null=True)),
                ('other_station', models.TextField(blank=True, null=True)),
                ('other_description', models.TextField(blank=True, null=True)),
                ('bearings', models.TextField(blank=True, null=True)),
                ('url', models.CharField(max_length=200, blank=True, null=True)),
                ('filename', models.CharField(max_length=200)),
                ('cached_primary_slug', models.CharField(max_length=200, blank=True, null=True)),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='EntranceSlug',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('slug', models.SlugField(unique=True)),
                ('primary', models.BooleanField(default=False)),
                ('entrance', models.ForeignKey(to='core.Entrance')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='Expedition',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('year', models.CharField(max_length=20, unique=True)),
                ('name', models.CharField(max_length=100)),
            ],
            options={
                'ordering': ('-year',),
                'get_latest_by': 'year',
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='ExpeditionDay',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('date', models.DateField()),
                ('expedition', models.ForeignKey(to='core.Expedition')),
            ],
            options={
                'ordering': ('date',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='LogbookEntry',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('date', models.DateField()),
                ('title', models.CharField(max_length=200)),
                ('cave_slug', models.SlugField()),
                ('place', models.CharField(max_length=100, blank=True, null=True, help_text="Only use this if you haven't chosen a cave")),
                ('text', models.TextField()),
                ('slug', models.SlugField()),
                ('filename', models.CharField(max_length=200, null=True)),
                ('entry_type', models.CharField(max_length=50, null=True, default='wiki', choices=[('wiki', 'Wiki style logbook'), ('html', 'Html style logbook')])),
                ('expedition', models.ForeignKey(blank=True, null=True, to='core.Expedition')),
                ('expeditionday', models.ForeignKey(null=True, to='core.ExpeditionDay')),
            ],
            options={
                'verbose_name_plural': 'Logbook Entries',
                'ordering': ('-date',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='NewSubCave',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('name', models.CharField(max_length=200, unique=True)),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='OtherCaveName',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('name', models.CharField(max_length=160)),
                ('cave', models.ForeignKey(to='core.Cave')),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='Person',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('first_name', models.CharField(max_length=100)),
                ('last_name', models.CharField(max_length=100)),
                ('fullname', models.CharField(max_length=200)),
                ('is_vfho', models.BooleanField(default=False, help_text='VFHO is the Vereines für Höhlenkunde in Obersteier, a nearby Austrian caving club.')),
                ('mug_shot', models.CharField(max_length=100, blank=True, null=True)),
                ('blurb', models.TextField(blank=True, null=True)),
                ('orderref', models.CharField(max_length=200)),
                ('user', models.OneToOneField(blank=True, null=True, to=settings.AUTH_USER_MODEL)),
            ],
            options={
                'verbose_name_plural': 'People',
                'ordering': ('orderref',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='PersonExpedition',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('slugfield', models.SlugField(blank=True, null=True)),
                ('is_guest', models.BooleanField(default=False)),
                ('expo_committee_position', models.CharField(max_length=200, blank=True, null=True, choices=[('leader', 'Expo leader'), ('medical', 'Expo medical officer'), ('treasurer', 'Expo treasurer'), ('sponsorship', 'Expo sponsorship coordinator'), ('research', 'Expo research coordinator')])),
                ('nickname', models.CharField(max_length=100, blank=True, null=True)),
                ('expedition', models.ForeignKey(to='core.Expedition')),
                ('person', models.ForeignKey(to='core.Person')),
            ],
            options={
                'ordering': ('-expedition',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='PersonTrip',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('time_underground', models.FloatField(help_text='In decimal hours')),
                ('is_logbook_entry_author', models.BooleanField(default=False)),
                ('logbook_entry', models.ForeignKey(to='core.LogbookEntry')),
                ('personexpedition', models.ForeignKey(null=True, to='core.PersonExpedition')),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='QM',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('new_since_parsing', models.BooleanField(default=False, editable=False)),
                ('non_public', models.BooleanField(default=False)),
                ('number', models.IntegerField(help_text='this is the sequential number in the year')),
                ('grade', models.CharField(max_length=1, choices=[('A', 'A: Large obvious lead'), ('B', 'B: Average lead'), ('C', 'C: Tight unpromising lead'), ('D', 'D: Dig'), ('X', 'X: Unclimbable aven')])),
                ('location_description', models.TextField(blank=True)),
                ('nearest_station_description', models.CharField(max_length=400, blank=True, null=True)),
                ('nearest_station_name', models.CharField(max_length=200, blank=True, null=True)),
                ('area', models.CharField(max_length=100, blank=True, null=True)),
                ('completion_description', models.TextField(blank=True, null=True)),
                ('comment', models.TextField(blank=True, null=True)),
                ('found_by', models.ForeignKey(blank=True, null=True, related_name='QMs_found', to='core.LogbookEntry')),
            ],
            options={
                'abstract': False,
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexBlock',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('name', models.CharField(max_length=100)),
                ('text', models.TextField()),
                ('date', models.DateField(blank=True, null=True)),
                ('begin_char', models.IntegerField()),
                ('survexpath', models.CharField(max_length=200)),
                ('totalleglength', models.FloatField()),
                ('cave', models.ForeignKey(blank=True, null=True, to='core.Cave')),
                ('expedition', models.ForeignKey(blank=True, null=True, to='core.Expedition')),
                ('expeditionday', models.ForeignKey(null=True, to='core.ExpeditionDay')),
                ('parent', models.ForeignKey(blank=True, null=True, to='core.SurvexBlock')),
            ],
            options={
                'ordering': ('id',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexDirectory',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('path', models.CharField(max_length=200)),
                ('cave', models.ForeignKey(blank=True, null=True, to='core.Cave')),
            ],
            options={
                'ordering': ('id',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexEquate',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('cave', models.ForeignKey(blank=True, null=True, to='core.Cave')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexFile',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('path', models.CharField(max_length=200)),
                ('cave', models.ForeignKey(blank=True, null=True, to='core.Cave')),
                ('survexdirectory', models.ForeignKey(blank=True, null=True, to='core.SurvexDirectory')),
            ],
            options={
                'ordering': ('id',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexLeg',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('tape', models.FloatField()),
                ('compass', models.FloatField()),
                ('clino', models.FloatField()),
                ('block', models.ForeignKey(to='core.SurvexBlock')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexPersonRole',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('nrole', models.CharField(max_length=200, blank=True, null=True, choices=[('insts', 'Instruments'), ('dog', 'Other'), ('notes', 'Notes'), ('pics', 'Pictures'), ('tape', 'Tape measure'), ('useless', 'Useless'), ('helper', 'Helper'), ('disto', 'Disto'), ('consultant', 'Consultant')])),
                ('personname', models.CharField(max_length=100)),
                ('expeditionday', models.ForeignKey(null=True, to='core.ExpeditionDay')),
                ('person', models.ForeignKey(blank=True, null=True, to='core.Person')),
                ('personexpedition', models.ForeignKey(blank=True, null=True, to='core.PersonExpedition')),
                ('persontrip', models.ForeignKey(blank=True, null=True, to='core.PersonTrip')),
                ('survexblock', models.ForeignKey(to='core.SurvexBlock')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexScansFolder',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('fpath', models.CharField(max_length=200)),
                ('walletname', models.CharField(max_length=200)),
            ],
            options={
                'ordering': ('walletname',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexScanSingle',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('ffile', models.CharField(max_length=200)),
                ('name', models.CharField(max_length=200)),
                ('survexscansfolder', models.ForeignKey(null=True, to='core.SurvexScansFolder')),
            ],
            options={
                'ordering': ('name',),
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexStation',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('name', models.CharField(max_length=100)),
                ('x', models.FloatField(blank=True, null=True)),
                ('y', models.FloatField(blank=True, null=True)),
                ('z', models.FloatField(blank=True, null=True)),
                ('block', models.ForeignKey(to='core.SurvexBlock')),
                ('equate', models.ForeignKey(blank=True, null=True, to='core.SurvexEquate')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='SurvexTitle',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('title', models.CharField(max_length=200)),
                ('cave', models.ForeignKey(blank=True, null=True, to='core.Cave')),
                ('survexblock', models.ForeignKey(to='core.SurvexBlock')),
            ],
            options={
            },
            bases=(models.Model,),
        ),
        migrations.CreateModel(
            name='TunnelFile',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('tunnelpath', models.CharField(max_length=200)),
                ('tunnelname', models.CharField(max_length=200)),
                ('bfontcolours', models.BooleanField(default=False)),
                ('filesize', models.IntegerField(default=0)),
                ('npaths', models.IntegerField(default=0)),
                ('survexblocks', models.ManyToManyField(to='core.SurvexBlock')),
                ('survexscans', models.ManyToManyField(to='core.SurvexScanSingle')),
                ('survexscansfolders', models.ManyToManyField(to='core.SurvexScansFolder')),
                ('survextitles', models.ManyToManyField(to='core.SurvexTitle')),
                ('tunnelcontains', models.ManyToManyField(to='core.TunnelFile')),
            ],
            options={
                'ordering': ('tunnelpath',),
            },
            bases=(models.Model,),
        ),
        migrations.AddField(
            model_name='survexleg',
            name='stationfrom',
            field=models.ForeignKey(related_name='stationfrom', to='core.SurvexStation'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='survexleg',
            name='stationto',
            field=models.ForeignKey(related_name='stationto', to='core.SurvexStation'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='survexdirectory',
            name='primarysurvexfile',
            field=models.ForeignKey(blank=True, null=True, related_name='primarysurvexfile', to='core.SurvexFile'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='survexblock',
            name='survexfile',
            field=models.ForeignKey(blank=True, null=True, to='core.SurvexFile'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='survexblock',
            name='survexscansfolder',
            field=models.ForeignKey(null=True, to='core.SurvexScansFolder'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='qm',
            name='nearest_station',
            field=models.ForeignKey(blank=True, null=True, to='core.SurvexStation'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='qm',
            name='ticked_off_by',
            field=models.ForeignKey(blank=True, null=True, related_name='QMs_ticked_off', to='core.LogbookEntry'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='cavedescription',
            name='linked_entrances',
            field=models.ManyToManyField(blank=True, null=True, to='core.Entrance'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='cavedescription',
            name='linked_qms',
            field=models.ManyToManyField(blank=True, null=True, to='core.QM'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='cavedescription',
            name='linked_subcaves',
            field=models.ManyToManyField(blank=True, null=True, to='core.NewSubCave'),
            preserve_default=True,
        ),
        migrations.AddField(
            model_name='caveandentrance',
            name='entrance',
            field=models.ForeignKey(to='core.Entrance'),
            preserve_default=True,
        ),
    ]