本文整理汇总了PHP中Propel\Generator\Model\Column::requiresTransactionInPostgres方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::requiresTransactionInPostgres方法的具体用法?PHP Column::requiresTransactionInPostgres怎么用?PHP Column::requiresTransactionInPostgres使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Generator\Model\Column
的用法示例。
在下文中一共展示了Column::requiresTransactionInPostgres方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testCreateNewColumn
public function testCreateNewColumn()
{
$column = new Column('title');
$this->assertSame('title', $column->getName());
$this->assertEmpty($column->getAutoIncrementString());
$this->assertSame('COL_TITLE', $column->getConstantName());
$this->assertSame('public', $column->getMutatorVisibility());
$this->assertSame('public', $column->getAccessorVisibility());
$this->assertFalse($column->getSize());
$this->assertFalse($column->hasPlatform());
$this->assertFalse($column->hasReferrers());
$this->assertFalse($column->isAutoIncrement());
$this->assertFalse($column->isEnumeratedClasses());
$this->assertFalse($column->isLazyLoad());
$this->assertFalse($column->isNamePlural());
$this->assertFalse($column->isNestedSetLeftKey());
$this->assertFalse($column->isNestedSetRightKey());
$this->assertFalse($column->isNotNull());
$this->assertFalse($column->isNodeKey());
$this->assertFalse($column->isPrimaryKey());
$this->assertFalse($column->isPrimaryString());
$this->assertFalse($column->isTreeScopeKey());
$this->assertFalse($column->isUnique());
$this->assertFalse($column->requiresTransactionInPostgres());
}
示例2: addColumn
/**
* Adds a new column to the table.
*
* @param Column|array $col
* @throws EngineException
* @return Column
*/
public function addColumn($col)
{
if ($col instanceof Column) {
if (isset($this->columnsByName[$col->getName()])) {
throw new EngineException(sprintf('Column "%s" declared twice in table "%s"', $col->getName(), $this->getName()));
}
$col->setTable($this);
if ($col->isInheritance()) {
$this->inheritanceColumn = $col;
}
$this->columns[] = $col;
$this->columnsByName[$col->getName()] = $col;
$this->columnsByLowercaseName[strtolower($col->getName())] = $col;
$this->columnsByPhpName[$col->getPhpName()] = $col;
$col->setPosition(count($this->columns));
if ($col->requiresTransactionInPostgres()) {
$this->needsTransactionInPostgres = true;
}
return $col;
}
$column = new Column();
$column->setTable($this);
$column->loadMapping($col);
return $this->addColumn($column);
// call self w/ different param
}