21 lines
606 B
Python
21 lines
606 B
Python
# Generated by Django 3.1.3 on 2021-02-04 22:58
|
|
|
|
from django.db import migrations, models
|
|
#import tagulous.models.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0001_initial'),
|
|
('longs', '0002_auto_20210204_2258'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='long',
|
|
name='condition',
|
|
field=models.CharField(blank=True, help_text='Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes "..."'),
|
|
),
|
|
]
|