minor
This commit is contained in:
parent
b903a94af2
commit
a3c81d8f47
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.addColumn('event', 'likes', {
|
||||
return queryInterface.addColumn('events', 'likes', {
|
||||
type: Sequelize.JSON,
|
||||
defaultValue: []
|
||||
})
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.addColumn('event', 'boost', {
|
||||
return queryInterface.addColumn('events', 'boost', {
|
||||
type: Sequelize.JSON,
|
||||
defaultValue: []
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue