Make provided laptop default=True.
This commit is contained in:
parent
b89f09105c
commit
08d0dd7161
18
src/program/migrations/0074_auto_20190801_0933.py
Normal file
18
src/program/migrations/0074_auto_20190801_0933.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.2.3 on 2019-08-01 07:33
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('program', '0073_eventproposal_use_provided_speaker_laptop'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='eventproposal',
|
||||||
|
name='use_provided_speaker_laptop',
|
||||||
|
field=models.BooleanField(default=True, help_text='Will you be using the provided speaker laptop?'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -341,7 +341,7 @@ class EventProposal(UserSubmittedModel):
|
||||||
)
|
)
|
||||||
|
|
||||||
use_provided_speaker_laptop = models.BooleanField(
|
use_provided_speaker_laptop = models.BooleanField(
|
||||||
help_text="Will you be using the provided speaker laptop?", default=False
|
help_text="Will you be using the provided speaker laptop?", default=True
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in a new issue