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.
|
|
|
/* eslint-disable*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = dc => {
|
|
|
|
const DataTypes = dc.ORM;
|
|
|
|
const sequelize = dc.orm;
|
|
|
|
const UserToken = sequelize.define("userToken", {
|
|
|
|
token: {
|
|
|
|
type: DataTypes.UUIDV4,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: null,
|
|
|
|
comment: null,
|
|
|
|
primaryKey: true,
|
|
|
|
field: "token",
|
|
|
|
autoIncrement: false,
|
|
|
|
unique: "t_user_token_token_uindex"
|
|
|
|
},
|
|
|
|
userInfo: {
|
|
|
|
type: DataTypes.JSONB,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: null,
|
|
|
|
comment: null,
|
|
|
|
primaryKey: false,
|
|
|
|
field: "user_info",
|
|
|
|
autoIncrement: false
|
|
|
|
},
|
|
|
|
expired: {
|
|
|
|
type: DataTypes.DATE,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: null,
|
|
|
|
comment: null,
|
|
|
|
primaryKey: false,
|
|
|
|
field: "expired",
|
|
|
|
autoIncrement: false
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
tableName: "t_user_token",
|
|
|
|
comment: "",
|
|
|
|
indexes: []
|
|
|
|
});
|
|
|
|
dc.models.UserToken = UserToken;
|
|
|
|
return UserToken;
|
|
|
|
};
|