Fix race condition when requesting songs, causing them to get the same order value.

This commit is contained in:
Jim Driessen
2017-09-24 01:02:52 +02:00
committed by Daan Sprenkels
parent 3abb39916d
commit f6492a70df
2 changed files with 29 additions and 24 deletions

View 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',
),
]