19 lines
432 B
Python
19 lines
432 B
Python
|
# Generated by Django 4.0.4 on 2022-06-09 10:25
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('App', '0014_rename_user_searchresults_session_key'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='searchresults',
|
||
|
name='sentence',
|
||
|
field=models.CharField(blank=True, max_length=500, null=True),
|
||
|
),
|
||
|
]
|