Skip to content

Commit

Permalink
fix(db): fix a typo in migration script
Browse files Browse the repository at this point in the history
  • Loading branch information
devformatters authored and Zeck Li committed Jul 17, 2020
1 parent acd57c8 commit e561edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/migrations/20200717222831_recreate_tag_usage_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports.up = async (knex) => {
tag.cover,
tag.description,
tag.created_at,
tag.updated_at
tag.updated_at,
recent_count,
count,
last_used,
Expand Down Expand Up @@ -89,7 +89,7 @@ exports.down = async (knex) => {
tag.id,
tag.content,
tag.created_at,
tag.updated_at
tag.updated_at,
recent_count,
count,
last_used,
Expand Down

0 comments on commit e561edc

Please sign in to comment.