Extra column i18n table cakephp

I have my i18n cakephp 3 table like this:

id int NOT NULL auto_increment,
locale varchar(6) NOT NULL,
model varchar(255) NOT NULL,
foreign_key int(10) NOT NULL,
field varchar(255) NOT NULL,
content text,
status int

I have that extra column status that I set the translation status (1 for translation checked and 0 for not checked).

I’d like to know if there’s a way to set a status when I save a translation. There will be times that at saving act I’ll need to save it with value 0 or, then, with value 1.

That’s how I’m saving:

$entity->translation($lang)->set([$column=> $translation]);