Contains the information of the operations of the created change sets
Data model
Fields
| Field | Type | Description |
|---|---|---|
| change_set_id* | INT | Relate the created operation to the change set |
| id* | INT | Unique identifier of the change set operation |
| observations | VARCHAR (MAX) | Save comments or observations of the operation if required |
| operation* | INT | Determines which operation is being performed (Insert/Update/Delete) |
| query* | VARCHAR (MAX) | Save the query that the operation is going to perform |
| status* | BIT | Validates whether the operation is to be processed or not |
| table* | VARCHAR (255) | Saves the name of the table to which the operation is to be performed |
Primary Key
| PK__ASMS_CHA__3213E83FEB1E91DE |
|---|
| id |
References
| Column | Referenced Table | Referenced column | Name |
|---|---|---|---|
| change_set_id* | dbo.ASMS_CHANGE_SET | id | FK01_ASMS_CHANGE_SET_OPERATION |