/**
  * Add a table.
  *
  * @param              $key
  * @param TableBuilder $builder
  * @return $this
  */
 public function addTable($key, TableBuilder $builder)
 {
     $this->tables->put($key, $builder->setOption('prefix', $key . '_'));
     return $this;
 }