Skip to content

Commit 71d6a93

Browse files
author
Nino van Galen
committed
fix: renamed runs tablename
1 parent ac9b3ba commit 71d6a93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/database/migrations/20200505214213-create-run.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
module.exports = {
15-
up: (queryInterface, Sequelize) => queryInterface.createTable('Runsinit', {
15+
up: (queryInterface, Sequelize) => queryInterface.createTable('Runs', {
1616
id: {
1717
allowNull: false,
1818
autoIncrement: true,
@@ -68,5 +68,5 @@ module.exports = {
6868
},
6969
}),
7070

71-
down: (queryInterface, _Sequelize) => queryInterface.dropTable('Runsinit'),
71+
down: (queryInterface, _Sequelize) => queryInterface.dropTable('Runs'),
7272
};

0 commit comments

Comments
 (0)