1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00

Added option to set custom description for apps

This commit is contained in:
Paweł Malak 2021-12-07 16:48:24 +01:00
parent b08181e712
commit 531ede0adf
7 changed files with 53 additions and 9 deletions

View file

@ -31,6 +31,11 @@ const App = sequelize.define(
allowNull: true,
defaultValue: 1,
},
description: {
type: DataTypes.STRING,
allowNull: false,
defaultValue: '',
},
},
{
tableName: 'apps',