public function testAddingIncrementingID()
 {
     $blueprint = new Blueprint('users');
     $blueprint->increments('id');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table "users" add "id" int identity primary key not null', $statements[0]);
 }
 public function testAddingIncrementingID()
 {
     $blueprint = new Blueprint('users');
     $blueprint->increments('id');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table `users` add `id` int unsigned not null auto_increment primary key', $statements[0]);
 }