dropPrimaryKey() public method

public dropPrimaryKey ( )
示例#1
0
 public function testDropPrimaryKey()
 {
     $q = new AlterTableQuery('products');
     $q->dropPrimaryKey();
     $this->assertDriverQuery(new MySQLDriver(), $q);
     $this->assertSqlStrings($q, [[new MySQLDriver(), 'ALTER TABLE `products` DROP PRIMARY KEY']]);
 }