aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0024_auto_20150813_1048.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-14 15:21:30 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-14 15:21:30 +0300
commit47564afcc25b48d42c76613899b96b9826b3cfc4 (patch)
tree897c29bd595fef7f0f09a9b5d45c961d779b56d5 /servo/migrations/0024_auto_20150813_1048.py
parent1ac299bd93f66e5597c23b6bc103e519feffbec1 (diff)
downloadServo-47564afcc25b48d42c76613899b96b9826b3cfc4.tar.gz
Servo-47564afcc25b48d42c76613899b96b9826b3cfc4.tar.bz2
Servo-47564afcc25b48d42c76613899b96b9826b3cfc4.zip
Remove GSX password fields
Diffstat (limited to 'servo/migrations/0024_auto_20150813_1048.py')
-rw-r--r--servo/migrations/0024_auto_20150813_1048.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/servo/migrations/0024_auto_20150813_1048.py b/servo/migrations/0024_auto_20150813_1048.py
new file mode 100644
index 0000000..080ac38
--- /dev/null
+++ b/servo/migrations/0024_auto_20150813_1048.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0023_auto_20150612_0822'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='gsxaccount',
+ name='password',
+ ),
+ migrations.RemoveField(
+ model_name='user',
+ name='gsx_password',
+ ),
+ ]