mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
multi_op
This commit is contained in:
parent
f1e27f6066
commit
64f7a53ec1
1 changed files with 29 additions and 0 deletions
29
multi_op/migrations/0001_squashed_0003_auto_20200904_1938.py
Normal file
29
multi_op/migrations/0001_squashed_0003_auto_20200904_1938.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.29 on 2020-12-30 17:32
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
replaces = [('multi_op', '0001_initial'), ('multi_op', '0002_auto_20200904_1905'), ('multi_op', '0003_auto_20200904_1938')]
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
('topologie', '0002_foreign_keys'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='MultiopOption',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('enabled_dorm', models.ManyToManyField(blank=True, related_name='enabled_dorm_multiop', to='topologie.Dormitory', verbose_name='enabled dorm')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'dormitories preferences',
|
||||
},
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue