aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-04 15:09:08 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-04 15:09:08 +0100
commitfa8319bd72f34fb6d157052107463493733e16d0 (patch)
tree4d53e77444b130740b6c1593c71bfe87ec398b50 /migrations
parentUpdated the name of the command to invoke the crawler based on asyncio. Updat... (diff)
downloadnewspipe-fa8319bd72f34fb6d157052107463493733e16d0.tar.gz
newspipe-fa8319bd72f34fb6d157052107463493733e16d0.tar.bz2
newspipe-fa8319bd72f34fb6d157052107463493733e16d0.zip
Typo.
Diffstat (limited to 'migrations')
-rw-r--r--migrations/versions/4b5c161e1ced_.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/migrations/versions/4b5c161e1ced_.py b/migrations/versions/4b5c161e1ced_.py
index 6f591e7e..9abed84b 100644
--- a/migrations/versions/4b5c161e1ced_.py
+++ b/migrations/versions/4b5c161e1ced_.py
@@ -23,7 +23,7 @@ def upgrade():
op.add_column('feed', sa.Column('last_error', sa.String(), nullable=True))
op.add_column('feed', sa.Column('last_modified', sa.DateTime(),
nullable=True, default=unix_start, server_default=str(unix_start)))
- op.add_column('feed', sa.Column('last_retreived', sa.DateTime(),
+ op.add_column('feed', sa.Column('last_retrieved', sa.DateTime(),
nullable=True, default=unix_start, server_default=str(unix_start)))
op.add_column('feed', sa.Column('etag', sa.String(), nullable=True))
op.add_column('user', sa.Column('refresh_rate', sa.Integer(),
@@ -37,6 +37,6 @@ def downgrade():
op.drop_column('feed', 'last_modified')
op.drop_column('feed', 'last_error')
op.drop_column('feed', 'error_count')
- op.drop_column('feed', 'last_retreived')
+ op.drop_column('feed', 'last_retrieved')
op.drop_column('feed', 'etag')
# end Alembic commands ###
bgstack15