improve townie schema
This commit is contained in:
parent
99e5c69aa6
commit
dbd4b740b5
21
ttadmin/users/migrations/0002_townie_displayname.py
Normal file
21
ttadmin/users/migrations/0002_townie_displayname.py
Normal file
@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.2 on 2016-11-21 07:13
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='townie',
|
||||
name='displayname',
|
||||
field=models.TextField(default=''),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
25
ttadmin/users/migrations/0003_auto_20161121_0734.py
Normal file
25
ttadmin/users/migrations/0003_auto_20161121_0734.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.2 on 2016-11-21 07:34
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0002_townie_displayname'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='townie',
|
||||
name='displayname',
|
||||
field=models.CharField(max_length=100),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='townie',
|
||||
name='shell',
|
||||
field=models.CharField(default='/bin/bash', max_length=50),
|
||||
),
|
||||
]
|
24
ttadmin/users/migrations/0004_auto_20161121_0755.py
Normal file
24
ttadmin/users/migrations/0004_auto_20161121_0755.py
Normal file
@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.2 on 2016-11-21 07:55
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0003_auto_20161121_0734'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='townie',
|
||||
name='pending',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='townie',
|
||||
name='reviewed',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user