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