summaryrefslogtreecommitdiff
path: root/lib/migrations
diff options
context:
space:
mode:
authorTakeaki Matsumoto2018-02-08 09:56:55 +0900
committerTakeaki Matsumoto2018-02-08 10:15:05 +0900
commita9973cabc41204951c32c233af1c2ff8ba6188dc (patch)
tree62868a59a3cd8b6a669a0e8c4851be2e64514e00 /lib/migrations
parentf3358b49f513c630e01357948be8591eb6e4d319 (diff)
Fix typo of DB migration script
Signed-off-by: Takeaki Matsumoto <takeaki.matsumoto@ntt.com>
Diffstat (limited to 'lib/migrations')
-rw-r--r--lib/migrations/20171009121200-longtext-for-mysql.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/migrations/20171009121200-longtext-for-mysql.js b/lib/migrations/20171009121200-longtext-for-mysql.js
index 61b409ca..2a7d0d3a 100644
--- a/lib/migrations/20171009121200-longtext-for-mysql.js
+++ b/lib/migrations/20171009121200-longtext-for-mysql.js
@@ -4,13 +4,13 @@ module.exports = {
queryInterface.changeColumn('Notes', 'content', {type: Sequelize.TEXT('long')})
queryInterface.changeColumn('Revisions', 'patch', {type: Sequelize.TEXT('long')})
queryInterface.changeColumn('Revisions', 'content', {type: Sequelize.TEXT('long')})
- queryInterface.changeColumn('Revisions', 'latContent', {type: Sequelize.TEXT('long')})
+ queryInterface.changeColumn('Revisions', 'lastContent', {type: Sequelize.TEXT('long')})
},
down: function (queryInterface, Sequelize) {
queryInterface.changeColumn('Notes', 'content', {type: Sequelize.TEXT})
queryInterface.changeColumn('Revisions', 'patch', {type: Sequelize.TEXT})
queryInterface.changeColumn('Revisions', 'content', {type: Sequelize.TEXT})
- queryInterface.changeColumn('Revisions', 'latContent', {type: Sequelize.TEXT})
+ queryInterface.changeColumn('Revisions', 'lastContent', {type: Sequelize.TEXT})
}
}