27 lines
808 B
Python
27 lines
808 B
Python
# Generated by Django 4.0.5 on 2022-06-22 21:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Membership',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('year', models.IntegerField(verbose_name='Rok')),
|
|
('attachment', models.FileField(upload_to='skladki', verbose_name='Plik pdf')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Składka członkowska',
|
|
'verbose_name_plural': 'Składki członkowskie',
|
|
'ordering': ['-year'],
|
|
},
|
|
),
|
|
]
|