The method returns a change set which you can further modify, and eventually save:
The method returns a change set which you can further modify, and eventually insert:
```php
$changeSet->modifyText('Post text');
$table->save($changeSet);
$table->insert($changeSet);
```
### Update
To update a record in the table, first you need to get an instance of change set for the specific record. You can get one for any given primary key or row:
To update a record in the table, you need to get an instance of change set for the specific record. You can get one for any given primary key or row: