public function test_unsigned_smallint()
 {
     $this->dbal->shouldReceive('addColumn')->with('column', 'smallint', ['autoIncrement' => false, 'unsigned' => true]);
     $this->table->unsignedSmallInteger('column');
 }