aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py')
-rw-r--r--migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py b/migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py
index 3ed8c5f9..83175034 100644
--- a/migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py
+++ b/migrations/versions/f700c4237e9d_remove_refresh_rate_column_from_the_.py
@@ -7,14 +7,13 @@ Create Date: 2016-10-05 08:47:51.384069
"""
# revision identifiers, used by Alembic.
+from alembic import op
+import sqlalchemy as sa
revision = "f700c4237e9d"
down_revision = "16f8fc3cf0cc"
branch_labels = None
depends_on = None
-import sqlalchemy as sa
-from alembic import op
-
def upgrade():
op.drop_column("user", "refresh_rate")
bgstack15