public function test_float()
 {
     $this->dbal->shouldReceive('addColumn')->with('column', 'float', ['precision' => 8, 'scale' => 2]);
     $this->table->float('column');
 }