bugfix: moved property to correct parent

This commit is contained in:
Baipyrus 2024-02-08 20:37:31 +01:00
parent 552b0b9c3d
commit 5338b56e4c

View File

@ -7,11 +7,11 @@ export default function(sequelize) {
primaryKey: true primaryKey: true
}, },
create: { create: {
type: DataTypes.BOOLEAN type: DataTypes.BOOLEAN,
defaultValue: false
}, },
owner: { owner: {
type: DataTypes.STRING, type: DataTypes.STRING,
defaultValue: false,
allowNull: true allowNull: true
} }
}); });