From d84f25c7a672b687c7f9c9e78a4c97a5586036b0 Mon Sep 17 00:00:00 2001 From: Apher Date: Thu, 23 Jul 2026 05:06:34 +0000 Subject: [PATCH] allow null on arguments --- models/intent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/models/intent.js b/models/intent.js index 1dbf4c8..914ad9d 100644 --- a/models/intent.js +++ b/models/intent.js @@ -16,6 +16,7 @@ module.exports = (sequelize, DataTypes) => { }, arguments: { type: DataTypes.ARRAY(DataTypes.STRING), + allowNull: true } }, { tableName: "intents",