我正在运行 PHP 5.4.6 并安装了 FuelPHP 1.6。我正在尝试使用
oil g migration posts title:varchar[50] --soft-delete
产生的迁移看起来像这样
<?php
命名空间燃料\迁移;
class Posts
{
public function up()
{
}
public function down()
{
}
}
任何暗示是什么导致了这种奇怪的行为?