mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 09:12:23 +01:00
Fix race condition when requesting songs, causing them to get the same order value.
This commit is contained in:
committed by
Daan Sprenkels
parent
3abb39916d
commit
f6492a70df
19
marietje/queues/migrations/0004_remove_playlistsong_order.py
Normal file
19
marietje/queues/migrations/0004_remove_playlistsong_order.py
Normal file
@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-09-23 22:59
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('queues', '0003_queuecommand'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='playlistsong',
|
||||
name='order',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user