编程语言
首页 > 编程语言> > php – Doctrine的addColumn()迁移方法有哪些选项?

php – Doctrine的addColumn()迁移方法有哪些选项?

作者:互联网

API将代码提供为:

public function up()
{
    $this->addColumn('table_name', 'column_name', 'string', $options);
}

但是没有关于可以包含在options数组中的内容的文档.

http://www.doctrine-project.org/Doctrine_Migration_Base/1_2#method_addcolumn

解决方法:

文档错了.查看Doctrine / Migration / base.php,您可以看到以下函数原型:

/**
 * Add a add column change.
 *
 * @param string $tableName Name of the table
 * @param string $columnName Name of the column
 * @param string $type Type of the column
 * @param string $length Length of the column
 * @param array $options Array of options for the column
 * @return void
 */
public function addColumn($tableName, $columnName, $type, $length = null, array $options = array())

因此,要添加长度,请将其作为第4个参数.我暂时忽略了这些选项.

标签:symfony-1-4,php,doctrine
来源: https://codeday.me/bug/20190827/1741568.html