1
0
mirror of https://github.com/ae-utbm/sith.git synced 2025-07-10 03:49:24 +00:00
Files
.github
antispam
club
com
core
auth
fixtures
management
migrations
0001_initial.py
0002_auto_20160831_0144.py
0003_auto_20160902_1914.py
0004_user_godfathers.py
0005_auto_20161105_1035.py
0006_auto_20161108_1703.py
0008_sithfile_asked_for_removal.py
0009_auto_20161120_1155.py
0010_sithfile_is_in_sas.py
0011_auto_20161124_0848.py
0012_notification.py
0013_auto_20161209_2338.py
0014_auto_20161210_0009.py
0015_sithfile_moderator.py
0016_auto_20161212_1922.py
0017_auto_20161220_1626.py
0018_auto_20161224_0211.py
0019_preferences_receive_weekmail.py
0020_auto_20170324_0917.py
0021_auto_20170822_1529.py
0022_auto_20170822_2232.py
0023_auto_20170902_1226.py
0024_auto_20170906_1317.py
0025_auto_20170919_1521.py
0026_auto_20170926_1512.py
0027_gift.py
0028_auto_20171216_2044.py
0029_auto_20180426_2013.py
0030_auto_20190704_1500.py
0031_auto_20190906_1615.py
0032_auto_20190909_0043.py
0033_auto_20191006_0049.py
0034_operationlog.py
0035_auto_20200216_1743.py
0036_auto_20211001_0248.py
0037_auto_20211105_1708.py
0038_alter_preferences_receive_weekmail.py
0039_alter_user_managers.py
0040_alter_user_options_user_user_permissions_and_more.py
0041_delete_metagroup_alter_group_options_and_more.py
0042_invert_is_manually_manageable_20250104_1742.py
0043_bangroup_alter_group_description_alter_user_groups_and_more.py
0044_alter_userban_options.py
0045_quickuploadimage.py
__init__.py
static
templates
templatetags
tests
views
__init__.py
admin.py
api.py
apps.py
baker_recipes.py
converters.py
fields.py
markdown.py
middleware.py
models.py
operations.py
schemas.py
search_indexes.py
urls.py
utils.py
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
Sith/core/migrations/0017_auto_20161220_1626.py
2024-07-08 15:37:09 +02:00

16 lines
393 B
Python

from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("core", "0016_auto_20161212_1922")]
operations = [
migrations.AlterField(
model_name="user",
name="last_update",
field=models.DateTimeField(verbose_name="last update", auto_now=True),
)
]