mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-08-13 09:29:40 +02:00
ansible
apps
activity
api
logs
member
note
permission
registration
scripts
treasury
wei
api
forms
management
migrations
0001_initial.py
0002_auto_20210313_1235.py
0003_bus_size.py
0004_auto_20220904_2325.py
0005_auto_20230128_1850.py
0006_unisex_clothing_cut.py
0007_help_text_emergency_contact.py
0008_auto_20240111_1545.py
__init__.py
templates
tests
__init__.py
admin.py
apps.py
models.py
tables.py
urls.py
views.py
docs
locale
note_kfet
.dockerignore
.env_example
.gitignore
.gitlab-ci.yml
.gitmodules
COPYING
Dockerfile
README.md
entrypoint.sh
manage.py
nginx_note.conf_example
note.cron
requirements.txt
tox.ini
uwsgi_note.ini
24 lines
744 B
Python
24 lines
744 B
Python
# Generated by Django 2.2.19 on 2021-03-13 11:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('wei', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='weiclub',
|
|
name='year',
|
|
field=models.PositiveIntegerField(default=2021, unique=True, verbose_name='year'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='weiregistration',
|
|
name='information_json',
|
|
field=models.TextField(default='{}', help_text='Information about the registration (buses for old members, survey for the new members), encoded in JSON', verbose_name='registration information'),
|
|
),
|
|
]
|