mirror of
https://github.com/ae-utbm/sith.git
synced 2025-08-19 23:49:56 +00:00
.github
antispam
club
com
migrations
0001_initial.py
0002_news_newsdate.py
0003_auto_20170115_2300.py
0004_auto_20171221_1614.py
0005_auto_20180318_2227.py
0006_remove_sith_index_page.py
0007_alter_news_club_alter_news_content_and_more.py
0008_alter_news_options_alter_newsdate_options_and_more.py
0009_remove_news_is_moderated_news_is_published.py
__init__.py
static
templates
tests
__init__.py
admin.py
api.py
apps.py
forms.py
ics_calendar.py
models.py
schemas.py
signals.py
urls.py
views.py
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
16 lines
392 B
Python
16 lines
392 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("com", "0004_auto_20171221_1614")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="poster",
|
|
name="display_time",
|
|
field=models.IntegerField(verbose_name="display time", default=15),
|
|
)
|
|
]
|