public function test_increments()
 {
     $this->dbal->shouldReceive('addColumn')->with('id', 'integer', ['autoIncrement' => true, 'unsigned' => true]);
     $this->dbal->shouldReceive('setPrimaryKey')->with(['id'], null);
     $this->table->increments('id');
 }