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