public function testAddingGeometryCollection()
 {
     $blueprint = new Blueprint('test');
     $blueprint->geometrycollection('foo');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertContains('AddGeometryColumn', $statements[0]);
     $this->assertContains('GEOMETRYCOLLECTION', $statements[0]);
 }