mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 21:12:23 +01:00
21 lines
476 B
Python
21 lines
476 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-09-26 13:56
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('queues', '0004_remove_playlistsong_order'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='playlistsong',
|
|
name='played_at',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|