1
0
mirror of https://github.com/ae-utbm/sith.git synced 2025-08-27 03:05:43 +00:00
Files
.github
accounting
antispam
club
com
core
counter
docs
eboutic
election
forum
galaxy
launderette
locale
matmat
pedagogy
rootplace
sas
sith
staticfiles
subscription
migrations
0001_initial.py
0002_auto_20160830_1719.py
0003_auto_20160902_1914.py
0004_auto_20170821_1849.py
0005_auto_20170821_2054.py
0006_auto_20170902_1222.py
0007_auto_20180706_1135.py
0008_auto_20180831_2016.py
0009_auto_20180920_1421.py
0010_auto_20180920_1441.py
0011_auto_20190825_2215.py
0012_auto_20200615_1438.py
0013_auto_20200828_2117.py
0014_auto_20201207_2323.py
__init__.py
static
templates
tests
__init__.py
admin.py
forms.py
models.py
urls.py
views.py
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
Sith/subscription/migrations/0002_auto_20160830_1719.py
2024-07-08 15:37:09 +02:00

25 lines
667 B
Python

from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("subscription", "0001_initial")]
operations = [
migrations.AlterField(
model_name="subscription",
name="location",
field=models.CharField(
max_length=20,
verbose_name="location",
choices=[
("BELFORT", "Belfort"),
("SEVENANS", "Sevenans"),
("MONTBELIARD", "Montbéliard"),
("EBOUTIC", "Eboutic"),
],
),
)
]