mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-06 16:15:48 +00:00
.github
antispam
club
com
core
counter
docs
eboutic
migrations
0001_initial.py
0002_auto_20221005_2243.py
__init__.py
static
templates
tests
README.md
__init__.py
admin.py
api.py
converters.py
models.py
schemas.py
urls.py
views.py
election
forum
galaxy
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
23 lines
583 B
Python
23 lines
583 B
Python
# Generated by Django 3.2.15 on 2022-10-05 20:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("eboutic", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="basketitem",
|
|
name="quantity",
|
|
field=models.PositiveIntegerField(verbose_name="quantity"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="invoiceitem",
|
|
name="quantity",
|
|
field=models.PositiveIntegerField(verbose_name="quantity"),
|
|
),
|
|
]
|