88 lines
1.9 KiB
TypeScript
88 lines
1.9 KiB
TypeScript
|
|
import {
|
||
|
|
DataTypes,
|
||
|
|
InferAttributes,
|
||
|
|
InferCreationAttributes,
|
||
|
|
Model,
|
||
|
|
NonAttribute,
|
||
|
|
Sequelize,
|
||
|
|
} from "sequelize";
|
||
|
|
import { AuthUserModel } from "./auth-user.model";
|
||
|
|
|
||
|
|
export type TabContextCreationAttributes = InferCreationAttributes<
|
||
|
|
TabContextModel,
|
||
|
|
{ omit: "user" }
|
||
|
|
>;
|
||
|
|
|
||
|
|
export class TabContextModel extends Model<
|
||
|
|
InferAttributes<TabContextModel, { omit: "user" }>,
|
||
|
|
InferCreationAttributes<TabContextModel, { omit: "user" }>
|
||
|
|
> {
|
||
|
|
// To avoid table creation
|
||
|
|
/*static async sync(): Promise<any> {
|
||
|
|
return Promise.resolve();
|
||
|
|
}*/
|
||
|
|
static associate(connection: Sequelize) {
|
||
|
|
const { AuthUserModel } = connection.models;
|
||
|
|
|
||
|
|
TabContextModel.belongsTo(AuthUserModel, {
|
||
|
|
as: "user",
|
||
|
|
foreignKey: "user_id",
|
||
|
|
onDelete: "CASCADE",
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
declare id: string;
|
||
|
|
declare tab_id: string;
|
||
|
|
declare user_id: string;
|
||
|
|
declare company_id: string;
|
||
|
|
declare branch_id: string;
|
||
|
|
|
||
|
|
declare user: NonAttribute<AuthUserModel>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default (sequelize: Sequelize) => {
|
||
|
|
TabContextModel.init(
|
||
|
|
{
|
||
|
|
id: {
|
||
|
|
type: DataTypes.UUID,
|
||
|
|
primaryKey: true,
|
||
|
|
},
|
||
|
|
user_id: {
|
||
|
|
type: DataTypes.UUID,
|
||
|
|
allowNull: false,
|
||
|
|
},
|
||
|
|
tab_id: {
|
||
|
|
type: DataTypes.UUID,
|
||
|
|
allowNull: false,
|
||
|
|
},
|
||
|
|
company_id: {
|
||
|
|
type: DataTypes.UUID,
|
||
|
|
allowNull: false,
|
||
|
|
},
|
||
|
|
branch_id: {
|
||
|
|
type: DataTypes.UUID,
|
||
|
|
allowNull: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
sequelize,
|
||
|
|
tableName: "user_tab_contexts",
|
||
|
|
paranoid: true, // softs deletes
|
||
|
|
timestamps: true,
|
||
|
|
|
||
|
|
createdAt: "created_at",
|
||
|
|
updatedAt: "updated_at",
|
||
|
|
deletedAt: "deleted_at",
|
||
|
|
|
||
|
|
indexes: [{ name: "tab_id_idx", fields: ["tab_id"], unique: true }],
|
||
|
|
|
||
|
|
whereMergeStrategy: "and", // <- cómo tratar el merge de un scope
|
||
|
|
|
||
|
|
defaultScope: {},
|
||
|
|
|
||
|
|
scopes: {},
|
||
|
|
}
|
||
|
|
);
|
||
|
|
return TabContextModel;
|
||
|
|
};
|