Store RPM in vinyles

This commit is contained in:
Yohann D'ANELLO 2020-05-23 14:31:22 +02:00
parent e2d4a80dba
commit 28eac94312
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.10 on 2020-05-23 12:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('media', '0033_futuremedia_type'),
]
operations = [
migrations.AddField(
model_name='vinyle',
name='rpm',
field=models.PositiveIntegerField(choices=[(33, '33 RPM'), (45, '45 RPM')], default=45, verbose_name='rounds per minute'),
preserve_default=False,
),
]