我有这样的shell命令。请告诉我,如何为此查询添加默认值?
bin / cake bake migration CreateProducts name:string description:text created modified modified
答案 0 :(得分:1)
您不能,不支持,列定义语法是:
fieldName:fieldType?[length]:indexType:indexName
如果要指定默认值,则需要使用default
方法的addColumn()
选项手动将其添加到迁移文件中,例如:
$table->addColumn('name', 'string', [
'default' => 'default value',
// ...
]);
另见