mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 13:09:16 +02:00
15 lines
360 B
Python
15 lines
360 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("music", "0002_auto_20151215_1645")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="album", name="release_date", field=models.DateField(null=True)
|
|
)
|
|
]
|