public function testDropTable()
 {
     $blueprint = new Blueprint('users');
     $blueprint->drop();
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('drop table "users"', $statements[0]);
 }