public function testAddingBoolean()
 {
     $blueprint = new Blueprint('users');
     $blueprint->boolean('foo');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table "users" add "foo" tinyint not null', $statements[0]);
 }