|
| 1 | +# Generated by Django 3.2.18 on 2023-03-06 20:08 |
| 2 | + |
| 3 | +from django.db import migrations, models |
| 4 | + |
| 5 | + |
| 6 | +class Migration(migrations.Migration): |
| 7 | + |
| 8 | + dependencies = [ |
| 9 | + ("projects", "0097_add_http_header"), |
| 10 | + ] |
| 11 | + |
| 12 | + operations = [ |
| 13 | + migrations.AlterField( |
| 14 | + model_name="historicalproject", |
| 15 | + name="enable_epub_build", |
| 16 | + field=models.BooleanField( |
| 17 | + default=False, |
| 18 | + help_text="Create a EPUB version of your documentation with each build.", |
| 19 | + verbose_name="Enable EPUB build", |
| 20 | + ), |
| 21 | + ), |
| 22 | + migrations.AlterField( |
| 23 | + model_name="historicalproject", |
| 24 | + name="enable_pdf_build", |
| 25 | + field=models.BooleanField( |
| 26 | + default=False, |
| 27 | + help_text="Create a PDF version of your documentation with each build.", |
| 28 | + verbose_name="Enable PDF build", |
| 29 | + ), |
| 30 | + ), |
| 31 | + migrations.AlterField( |
| 32 | + model_name="project", |
| 33 | + name="enable_epub_build", |
| 34 | + field=models.BooleanField( |
| 35 | + default=False, |
| 36 | + help_text="Create a EPUB version of your documentation with each build.", |
| 37 | + verbose_name="Enable EPUB build", |
| 38 | + ), |
| 39 | + ), |
| 40 | + migrations.AlterField( |
| 41 | + model_name="project", |
| 42 | + name="enable_pdf_build", |
| 43 | + field=models.BooleanField( |
| 44 | + default=False, |
| 45 | + help_text="Create a PDF version of your documentation with each build.", |
| 46 | + verbose_name="Enable PDF build", |
| 47 | + ), |
| 48 | + ), |
| 49 | + ] |
0 commit comments