mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-25 23:21:41 +03:00
merged 0041 and 0042 migrations
This commit is contained in:
parent
fd789581ed
commit
856d645652
65
server/src/uds/migrations/0041_auto_20210624_1201.py
Normal file
65
server/src/uds/migrations/0041_auto_20210624_1201.py
Normal file
@ -0,0 +1,65 @@
|
||||
# Generated by Django 3.2.4 on 2021-06-24 12:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('uds', '0040_auto_20210422_1340'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterUniqueTogether(
|
||||
name='config',
|
||||
unique_together=set(),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='group',
|
||||
unique_together=set(),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='service',
|
||||
unique_together=set(),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='uniqueid',
|
||||
unique_together=set(),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='userserviceproperty',
|
||||
unique_together=set(),
|
||||
),
|
||||
migrations.AlterIndexTogether(
|
||||
name='userservice',
|
||||
index_together=set(),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='statscounters',
|
||||
index=models.Index(fields=['owner_type', 'stamp'], name='uds_stats_c_owner_t_db894d_idx'),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='statscounters',
|
||||
index=models.Index(fields=['owner_type', 'counter_type', 'stamp'], name='uds_stats_c_owner_t_a195c1_idx'),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='userservice',
|
||||
index=models.Index(fields=['deployed_service', 'cache_level', 'state'], name='uds__user_s_deploye_a38d25_idx'),
|
||||
),
|
||||
migrations.AddConstraint(
|
||||
model_name='config',
|
||||
constraint=models.UniqueConstraint(fields=('section', 'key'), name='u_cfg_section_key'),
|
||||
),
|
||||
migrations.AddConstraint(
|
||||
model_name='service',
|
||||
constraint=models.UniqueConstraint(fields=('provider', 'name'), name='u_srv_provider_name'),
|
||||
),
|
||||
migrations.AddConstraint(
|
||||
model_name='uniqueid',
|
||||
constraint=models.UniqueConstraint(fields=('basename', 'seq'), name='u_uid_base_seq'),
|
||||
),
|
||||
migrations.AddConstraint(
|
||||
model_name='userserviceproperty',
|
||||
constraint=models.UniqueConstraint(fields=('name', 'user_service'), name='u_uprop_name_userservice'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user