0

我在迁移方面遇到了一些问题。我创建新的迁移文件

php artisan make:migration create_menu_table --create=menu

然后我编辑新的迁移文件,当我尝试迁移时它不起作用

我试过了:

php artisan migrate
php artisan migrate --force
php artisan migrate:refresh
php artisan migrate:refresh --seed
php artisan migrate:rollback
php artisan migrate:reset

但他们不添加创建的表

我没有任何错误

感谢帮助

4

2 回答 2

1

运行composer dumpautoload,然后php artisan migrate:refresh重试。

希望这可以帮助!

于 2015-12-15T11:02:19.737 回答
0

添加架构 ::defaultStringLength(191) 以迁移文件(放入每个文件迁移)

像这样

public function up()
    {
        schema::defaultStringLength(191);
        Schema::create('products', function (Blueprint $table) {
            $table->increments('id');
            $table->string ('Name');
            $table->float('price');
            $table->timestamps();
        });
    }
于 2017-11-26T13:12:17.347 回答