20 lines
454 B
Python
20 lines
454 B
Python
# Generated by Django 4.0.5 on 2022-07-24 23:23
|
|
|
|
from django.db import migrations
|
|
import filebrowser.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='tournament',
|
|
name='photo',
|
|
field=filebrowser.fields.FileBrowseField(blank=True, max_length=200, verbose_name='Zdjęcie'),
|
|
),
|
|
]
|