コード例 #1
0
 public function testAddingSmallInteger()
 {
     $blueprint = new Blueprint('users');
     $blueprint->smallInteger('foo');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table users add ( foo number(5,0) not null )', $statements[0]);
 }