escolares

This commit is contained in:
2020-11-16 09:58:55 -06:00
parent 324bd3184d
commit c49ef87cfc
11 changed files with 148 additions and 15 deletions
+7 -1
View File
@@ -18,11 +18,17 @@ Usuario.init(
},
password: {
type: DataTypes.STRING(20),
allowNull: false,
allowNull: true,
defaultValue: null,
},
nombre: {
type: DataTypes.STRING(20),
allowNull: true,
defaultValue: null,
},
activo: {
type: DataTypes.BOOLEAN,
allowNull: false,
},
},
{