public function test_softdeletes()
 {
     $column = m::mock(Column::class);
     $this->dbal->shouldReceive('addColumn')->with('deleted_at', 'datetime')->andReturn($column);
     $column->shouldReceive('setNotnull')->with(false)->once();
     $this->table->softDeletes();
 }