1

I have shell command like this. Tell me please, how can i add default value to this query ?

bin/cake bake migration CreateProducts name:string description:text created modified
4

1 回答 1

2

不能,不支持,列定义语法是:

fieldName:fieldType?[length]:indexType:indexName

如果要指定默认值,则需要使用该方法的default选项手动将其添加到迁移文件中addColumn(),例如:

$table->addColumn('name', 'string', [
    'default' => 'default value',
    // ...
]);

也可以看看

于 2017-06-22T15:53:08.020 回答