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