mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 11:59:23 +00:00
Add token handling form in launderette
This commit is contained in:
18
launderette/migrations/0010_auto_20160806_1242.py
Normal file
18
launderette/migrations/0010_auto_20160806_1242.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('launderette', '0009_remove_token_product'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='token',
|
||||
options={'verbose_name': 'Token', 'ordering': ['name']},
|
||||
),
|
||||
]
|
18
launderette/migrations/0011_auto_20160806_1459.py
Normal file
18
launderette/migrations/0011_auto_20160806_1459.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('launderette', '0010_auto_20160806_1242'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='token',
|
||||
options={'ordering': ['type', 'name'], 'verbose_name': 'Token'},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user