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