diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-04 15:09:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-04 15:09:08 +0100 |
commit | fa8319bd72f34fb6d157052107463493733e16d0 (patch) | |
tree | 4d53e77444b130740b6c1593c71bfe87ec398b50 /migrations | |
parent | Updated the name of the command to invoke the crawler based on asyncio. Updat... (diff) | |
download | newspipe-fa8319bd72f34fb6d157052107463493733e16d0.tar.gz newspipe-fa8319bd72f34fb6d157052107463493733e16d0.tar.bz2 newspipe-fa8319bd72f34fb6d157052107463493733e16d0.zip |
Typo.
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/versions/4b5c161e1ced_.py | 4 |
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 ### |