19 lines
403 B
Python
19 lines
403 B
Python
|
# Generated by Django 4.0.4 on 2022-06-02 11:49
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('App', '0012_searchresults'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='searchresults',
|
||
|
name='user',
|
||
|
field=models.CharField(blank=True, max_length=17, null=True),
|
||
|
),
|
||
|
]
|