Remove timezone
This commit is contained in:
parent
d7b1910839
commit
6162bd984f
4 changed files with 18 additions and 20 deletions
18
ccdb/users/migrations/0003_remove_user_timezone.py
Normal file
18
ccdb/users/migrations/0003_remove_user_timezone.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0002_timezone'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='user',
|
||||
name='timezone',
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue