aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/661199d8768a_problem_with_the_last_upgrade.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 18:02:18 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 18:02:18 +0100
commitb5aa79f0641a0589f2a9e783035db2546561052f (patch)
tree691d4b247f183a3ce3615792c86a4f36bca22c05 /migrations/versions/661199d8768a_problem_with_the_last_upgrade.py
parentvarious !minor fixes (diff)
downloadnewspipe-b5aa79f0641a0589f2a9e783035db2546561052f.tar.gz
newspipe-b5aa79f0641a0589f2a9e783035db2546561052f.tar.bz2
newspipe-b5aa79f0641a0589f2a9e783035db2546561052f.zip
Resolved some flakes warnings.
Diffstat (limited to 'migrations/versions/661199d8768a_problem_with_the_last_upgrade.py')
-rw-r--r--migrations/versions/661199d8768a_problem_with_the_last_upgrade.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/migrations/versions/661199d8768a_problem_with_the_last_upgrade.py b/migrations/versions/661199d8768a_problem_with_the_last_upgrade.py
index 04a5ac87..6c1fcc9b 100644
--- a/migrations/versions/661199d8768a_problem_with_the_last_upgrade.py
+++ b/migrations/versions/661199d8768a_problem_with_the_last_upgrade.py
@@ -7,14 +7,13 @@ Create Date: 2016-02-13 11:33:14.183576
"""
# revision identifiers, used by Alembic.
+from alembic import op
+import sqlalchemy as sa
revision = "661199d8768a"
down_revision = "3f83bfe93fc"
branch_labels = None
depends_on = None
-import sqlalchemy as sa
-from alembic import op
-
def upgrade():
op.add_column("article", sa.Column("updated_date", sa.DateTime(), nullable=True))
bgstack15