这是我的代码
Scheme::create(function(Blueprint table) {
$table->increments("id");
}
谁能告诉我为什么这不起作用?我不知道为什么......
答案 0 :(得分:0)
首先,您没有为数据库命名,而是Schema
Schema::create('assignments', function(Blueprint $table) {
$table->increments('id');
});
希望这有帮助。