There is no such tables as users in the currency system #857
-
module.exports = (sequelize, DataTypes) => {
return sequelize.define('users', {
user_id: {
type: DataTypes.STRING,
primaryKey: true,
},
balance: {
type: DataTypes.INTEGER,
defaultValue: 0,
allowNull: false,
},
}, {
timestamps: false,
});
}; It says that
I know that the error is from that file because I changed
Any help would be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think you forgot this part:
|
Beta Was this translation helpful? Give feedback.
I think you forgot this part: