upgrade_schema = $args[0]; } /** @return bool */ protected function run() { $table = 'icl_translation_status'; $column = 'tp_id'; if ( $this->upgrade_schema->does_table_exist( $table ) ) { if ( ! $this->upgrade_schema->does_column_exist( $table, $column ) ) { $this->upgrade_schema->add_column( $table, $column, 'INT NULL DEFAULT NULL' ); } } $this->result = true; return $this->result; } }