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 char(1) not null )', $statements[0]);
 }