|
|
|
@ -831,7 +831,7 @@ export class ColumnsService {
|
|
|
|
|
op_type: AuditOperationTypes.TABLE_COLUMN, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.UPDATE, |
|
|
|
|
user: param.req?.user?.email, |
|
|
|
|
description: `updated column ${column.column_name} with alias ${column.title} from table ${table.table_name}`, |
|
|
|
|
description: `The column ${column.column_name} with alias ${column.title} from table ${table.table_name} has been updated`, |
|
|
|
|
ip: param.req?.clientIp, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -1133,7 +1133,7 @@ export class ColumnsService {
|
|
|
|
|
op_type: AuditOperationTypes.TABLE_COLUMN, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.CREATE, |
|
|
|
|
user: param?.req.user?.email, |
|
|
|
|
description: `created column ${colBody.column_name} with alias ${colBody.title} from table ${table.table_name}`, |
|
|
|
|
description: `The column ${colBody.column_name} with alias ${colBody.title} from table ${table.table_name} has been created`, |
|
|
|
|
ip: param?.req.clientIp, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -1344,7 +1344,7 @@ export class ColumnsService {
|
|
|
|
|
op_type: AuditOperationTypes.TABLE_COLUMN, |
|
|
|
|
op_sub_type: AuditOperationSubTypes.DELETE, |
|
|
|
|
user: param?.req?.user?.email, |
|
|
|
|
description: `deleted column ${column.column_name} with alias ${column.title} from table ${table.table_name}`, |
|
|
|
|
description: `The column ${column.column_name} with alias ${column.title} from table ${table.table_name} has been deleted`, |
|
|
|
|
ip: param?.req.clientIp, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|