我正在尝试将新用户添加到由migrate命令创建的表'Users'中。但是,我收到此错误:Illuminate \ Database \ QueryException,消息'SQLSTATE [42S02]:找不到基表或视图:1146表'scontrol_Database.users'不存在(SQL:插入users
({ {1}},username
,password
,isactive
,updated_at
)
我很困惑,因为我已经运行了composer dump-autoload并刷新了所有内容,但到目前为止没有任何工作。这是我的架构:
created_at
请帮忙。
答案 0 :(得分:0)
数据库和表名在Windows中不区分大小写,在大多数Unix或Linux中区分大小写。
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('username')->unique();
$table->string('password');
$table->boolean('isactive');
$table->timestamps();
});