Skip to content

Commit

Permalink
Add migration to IF App
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoVS committed Apr 11, 2016
1 parent 7d35469 commit 7505d12
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ifs/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('password', models.CharField(max_length=128, verbose_name='password')),
('last_login', models.DateTimeField(null=True, verbose_name='last login', blank=True)),
('last_login', models.DateTimeField(verbose_name='last login', blank=True)),
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),
('username', models.CharField(help_text='Required. 30 characters or fewer. Letters, numbers and ./+/-/_ characters', unique=True, max_length=30, verbose_name='Username', validators=[django.core.validators.RegexValidator(re.compile(b'^[\\w.+-]+$'), 'Enter a valid username.', b'invalid')])),
('first_name', models.CharField(max_length=30, verbose_name='First name', blank=True)),
Expand Down
19 changes: 19 additions & 0 deletions ifs/migrations/0002_auto_20160411_1821.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ifs', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='ifuser',
name='last_login',
field=models.DateTimeField(null=True, verbose_name='last login', blank=True),
),
]

0 comments on commit 7505d12

Please sign in to comment.