/**
  * Add timestamp columns created_at and updated_at to the table.
  *
  * @return $this
  */
 public function addTimestamps()
 {
     $this->table->addTimestamps();
     return $this;
 }