bornhack-website/src/rideshare/migrations/0007_ride_author.py

23 lines
512 B
Python
Raw Normal View History

# Generated by Django 2.1.7 on 2019-07-13 07:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2020-02-07 17:46:34 +00:00
("rideshare", "0006_auto_20190713_0859"),
]
operations = [
migrations.AddField(
2020-02-07 17:46:34 +00:00
model_name="ride",
name="author",
field=models.CharField(
default="Unnamed",
help_text="Let people know who posted this",
max_length=100,
),
),
]