testCreateTableWithSeparatePk() public méthode

Exemple #1
0
 public function testCreateTableWithSeparatePk()
 {
     $pkColumn = parent::testCreateTableWithSeparatePk();
     $this->assertEquals('"foo" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL', $pkColumn->toSql());
 }
Exemple #2
0
 public function testCreateTableWithSeparatePk()
 {
     $pkColumn = parent::testCreateTableWithSeparatePk();
     $this->assertEquals('`foo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY', $pkColumn->toSql());
 }
Exemple #3
0
 public function testCreateTableWithSeparatePk()
 {
     $pkColumn = parent::testCreateTableWithSeparatePk();
     $this->assertEquals('"foo" serial primary key', $pkColumn->toSql());
 }