bornhack-website/src/rideshare/migrations/0008_auto_20190713_0924.py

23 lines
509 B
Python
Raw Normal View History

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