雄辩的迁移不起作用

时间:2016-03-05 11:44:04

标签: php laravel

这是我的代码

Scheme::create(function(Blueprint table) {
    $table->increments("id");
}

谁能告诉我为什么这不起作用?我不知道为什么......

1 个答案:

答案 0 :(得分:0)

首先,您没有为数据库命名,而是Schema

Schema::create('assignments', function(Blueprint $table) {
     $table->increments('id');
 });

希望这有帮助。