mirror of
https://github.com/ae-utbm/sith.git
synced 2025-08-28 19:55:44 +00:00
.github
accounting
antispam
club
com
core
counter
docs
eboutic
election
migrations
0001_initial.py
0002_election_archived.py
0003_auto_20171202_1819.py
0004_auto_20191006_0049.py
__init__.py
static
templates
__init__.py
admin.py
models.py
tests.py
urls.py
views.py
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
16 lines
381 B
Python
16 lines
381 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("election", "0001_initial")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="election",
|
|
name="archived",
|
|
field=models.BooleanField(verbose_name="archived", default=False),
|
|
)
|
|
]
|