Skip to content

Commit b58237b

Browse files
committed
add migration for tron_reward table
1 parent 7192952 commit b58237b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
up: (queryInterface, Sequelize) =>
3+
queryInterface.addIndex('tron_reward', ['updated_at']),
4+
// eslint-disable-next-line no-unused-vars
5+
down: (queryInterface, Sequelize) =>
6+
queryInterface.removeIndex('tron_reward', ['updated_at']),
7+
};

0 commit comments

Comments
 (0)