![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
"use strict";
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class UserRoles extends Model {
static associate(models) {
// Define association
UserRoles.belongsToMany(models.Role, {
through: "UserRole",
foreignKey: "user_roles_id",
otherKey: "role_id",
});
UserRoles.hasMany(models.UserRole, {
foreignKey: "user_roles_id",
onDelete: "CASCADE",
hooks: true,
});
}
}
UserRoles.init(
{
id: {
allowNull: false,
primaryKey: true,
autoIncrement: true,
type: DataTypes.INTEGER,
},
user_id: {
type: DataTypes.INTEGER,
allowNull: false,
},
is_active: {
type: DataTypes.BOOLEAN,
defaultValue: true,
},
},
{
sequelize,
modelName: "UserRoles",
tableName: "user_roles",
}
);
return UserRoles;
};
免責聲明:info@kdj.com
所提供的資訊並非交易建議。 kDJ.com對任何基於本文提供的資訊進行的投資不承擔任何責任。加密貨幣波動性較大,建議您充分研究後謹慎投資!
如果您認為本網站使用的內容侵犯了您的版權,請立即聯絡我們(info@kdj.com),我們將及時刪除。
-
-
- Ruvi AI(RVU)利用區塊鍊和人工智能破壞營銷,娛樂和金融
- 2025-06-13 07:05:12
- 長期以來,Tron一直是區塊鏈項目如何通過關注其使命並實現一致增長來取得顯著成功的一個輝煌的例子。
-
-
-
- 隨著RWA集成計劃,信任錢包令牌(TWT)的價格下跌了5.7%
- 2025-06-13 06:45:13
- Trust Crypto Wallet的最新宣布將令牌化現實資產(RWAS)帶到其超過2億用戶引起了興奮。
-
- 以太坊(ETH)處於三階段市場週期的第二階段
- 2025-06-13 07:25:13
- 根據分析師Abbé提供的圖表和推文信息,以太坊(ETH)處於三階段市場週期的第二階段。
-
-
-