public function test_timestampsTz()
 {
     $this->dbal->shouldReceive('addColumn')->with('created_at', 'datetimetz');
     $this->dbal->shouldReceive('addColumn')->with('updated_at', 'datetimetz');
     $this->table->timestampsTz();
 }