aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
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