bornhack-website/src/rideshare/migrations/0003_ride_has_car.py

19 lines
469 B
Python
Raw Normal View History

2019-07-11 18:48:14 +00:00
# Generated by Django 2.1.7 on 2019-07-11 18:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rideshare', '0002_auto_20180814_1942'),
]
operations = [
migrations.AddField(
model_name='ride',
name='has_car',
field=models.BooleanField(default=True, help_text='Leave checked if you are offering a ride, uncheck if you need a ride'),
),
]