X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d2b872dc09415d2a436e825673425d9a82afa034..281e079a27d5f168d0a57c79b17850bc4fcc65a1:/src/catalogue/migrations/0024_book_audio_length.py diff --git a/src/catalogue/migrations/0024_book_audio_length.py b/src/catalogue/migrations/0024_book_audio_length.py new file mode 100644 index 000000000..89e38affa --- /dev/null +++ b/src/catalogue/migrations/0024_book_audio_length.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('catalogue', '0023_book_abstract'), + ] + + operations = [ + migrations.AddField( + model_name='book', + name='audio_length', + field=models.CharField(max_length=8, verbose_name='audio length', blank=True), + ), + ]