@ccci/micro-server 1.0.196 → 1.0.197
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -302403,15 +302403,15 @@ class BaseModel extends Model {
|
|
|
302403
302403
|
return defaultAttributes ? {
|
|
302404
302404
|
createdById: {
|
|
302405
302405
|
type: new DataTypes.INTEGER,
|
|
302406
|
-
comment: "
|
|
302406
|
+
comment: "References the user who initially created the record; used for audit and traceability."
|
|
302407
302407
|
},
|
|
302408
302408
|
updatedById: {
|
|
302409
302409
|
type: new DataTypes.INTEGER,
|
|
302410
|
-
comment: "
|
|
302410
|
+
comment: "References the user who last updated the record; used for audit and traceability."
|
|
302411
302411
|
},
|
|
302412
302412
|
isActive: {
|
|
302413
302413
|
type: new DataTypes.BOOLEAN,
|
|
302414
|
-
comment: "
|
|
302414
|
+
comment: "Indicates whether the record is currently active and relevant; inactive records are archived but retained for reference.",
|
|
302415
302415
|
allowNull: false,
|
|
302416
302416
|
defaultValue: true
|
|
302417
302417
|
}
|