/**
  * used in store_setup to create new stores which we don't like here.
  *
  * {@inheritdoc}
  */
 public function insertForce($table, array $bind)
 {
     if (isset($this->allowedInsertForceTables[$table])) {
         return parent::insertForce($table, $bind);
     }
     return 0;
 }