Updated the password field in the Node model

This commit is contained in:
Mathias Wagner
2023-04-03 23:53:34 +02:00
parent b39cfbc6a4
commit 59fadcf05e

View File

@@ -12,6 +12,6 @@ module.exports = db.define("nodes", {
},
password: {
type: Sequelize.STRING,
allowNull: false
allowNull: true
}
}, {createdAt: false, updatedAt: false});