public function test_timestamps()
 {
     $this->dbal->shouldReceive('addColumn')->with('created_at', 'datetime');
     $this->dbal->shouldReceive('addColumn')->with('updated_at', 'datetime');
     $this->table->timestamps();
 }