forked from expo/troggle
21 lines
444 B
Python
21 lines
444 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.29 on 2020-06-19 14:11
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='logbookentry',
|
|
name='cave_slug',
|
|
field=models.SlugField(blank=True),
|
|
),
|
|
]
|