mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-17 23:39:23 +00:00
.github
antispam
club
migrations
0001_initial.py
0002_auto_20160824_2152.py
0003_auto_20160902_2042.py
0004_auto_20160915_1057.py
0005_auto_20161120_1149.py
0006_auto_20161229_0040.py
0007_auto_20170324_0917.py
0008_auto_20170515_2214.py
0009_auto_20170822_2232.py
0010_auto_20170912_2028.py
0010_club_logo.py
0011_auto_20180426_2013.py
0012_club_board_group_club_members_group.py
0013_alter_club_board_group_alter_club_members_group_and_more.py
0014_alter_club_options_rename_unix_name_club_slug_name_and_more.py
__init__.py
static
templates
tests
widgets
__init__.py
admin.py
api.py
forms.py
models.py
schemas.py
urls.py
views.py
com
core
counter
docs
eboutic
election
forum
galaxy
launderette
locale
matmat
pedagogy
rootplace
sas
sith
staticfiles
subscription
trombi
.coveragerc
.env.example
.envrc
.gitattributes
.gitignore
.mailmap
.npmrc
.pre-commit-config.yaml
.python-version
CONTRIBUTING.rst
LICENSE
Procfile.service
Procfile.static
README.md
biome.json
conftest.py
manage.py
mkdocs.yml
openapi-csrf.ts
openapi-ts.config.ts
package-lock.json
package.json
pyproject.toml
tsconfig.json
uv.lock
vite.config.mts
24 lines
626 B
Python
24 lines
626 B
Python
from __future__ import unicode_literals
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("club", "0004_auto_20160915_1057")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="club",
|
|
name="home",
|
|
field=models.OneToOneField(
|
|
related_name="home_of_club",
|
|
blank=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
verbose_name="home",
|
|
null=True,
|
|
to="core.SithFile",
|
|
),
|
|
)
|
|
]
|