コード例 #1
0
 public function testGeneratesCreateUnnamedPrimaryKeySQL()
 {
     $this->assertEquals('ALTER TABLE foo ADD PRIMARY KEY (a, b)', $this->_platform->getCreatePrimaryKeySQL(new Index('any_pk_name', array('a', 'b'), true, true), 'foo'));
 }