From cd0538cc4eb65fe35e11627dfbe3966cc24432f2 Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Fri, 30 Dec 2016 23:40:59 -0600 Subject: [PATCH] Add migration --- .../migrations/0002_auto_20161130_0157.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 bikeshop_project/registration/migrations/0002_auto_20161130_0157.py diff --git a/bikeshop_project/registration/migrations/0002_auto_20161130_0157.py b/bikeshop_project/registration/migrations/0002_auto_20161130_0157.py new file mode 100644 index 0000000..5dbf1f5 --- /dev/null +++ b/bikeshop_project/registration/migrations/0002_auto_20161130_0157.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-11-30 01:57 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('registration', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='customuser', + options={'verbose_name': 'User', 'verbose_name_plural': 'Users'}, + ), + ]