Use new intent model

This commit is contained in:
Apher 2026-07-08 00:00:31 +00:00
parent 203cab32a6
commit 4e74e877da

View File

@ -6,16 +6,12 @@ module.exports = (sequelize, DataTypes) => {
autoIncrement: true, autoIncrement: true,
allowNull: false allowNull: false
}, },
command: { name: {
type: DataTypes.STRING, type: DataTypes.STRING,
allowNull: false allowNull: false
}, },
description: { examples: {
type: DataTypes.STRING, type: DataTypes.ARRAY(DataTypes.STRING),
allowNull: true
},
type: {
type: DataTypes.STRING,
allowNull: true allowNull: true
} }
}, { }, {