You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
18 lines
418 B
import { Sequelize, DataTypes } from "sequelize"
|
|
|
|
type DT = typeof DataTypes
|
|
module.exports = function (sequelize: Sequelize, DataTypes: DT) {
|
|
const User = sequelize.define('ha-user', {
|
|
username: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false
|
|
},
|
|
password: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false
|
|
}
|
|
}, {
|
|
|
|
});
|
|
return User
|
|
};
|
|
|