testCreateTableWithSeparatePk() 공개 메소드

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