Add isMissing to Plugin model, add manifest version and name validation, create/update plugins table

This commit is contained in:
advplyr 2024-12-21 13:26:42 -06:00
parent 5a96d8aeb3
commit cfe3deff3b
5 changed files with 106 additions and 7 deletions

View file

@ -31,6 +31,7 @@ async function up({ context: { queryInterface, logger } }) {
},
name: DataTypes.STRING,
version: DataTypes.STRING,
isMissing: DataTypes.BOOLEAN,
config: DataTypes.JSON,
extraData: DataTypes.JSON,
createdAt: DataTypes.DATE,