Я получаю ошибку после добавления логического столбца в мою таблицу пользователей. Миграция успешно завершается, но когда я открываю представление просмотра таблицы пользователей в phpMyAdmin, я получаю длинный список ошибок, но вижу столбцы таблицы пользователей. Обратите внимание, что в другой таблице у меня тоже есть логический столбец, и проблем нет.
create_users_table файл миграции
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string("name", 255);
$table->string("surname", 255);
$table->string("email");
$table->string("password");
$table->string("photo")->default("assets/images/profile.png");
$table->double("homeworks")->default(0);
$table->double("exams")->default(0);
$table->double("tests")->default(0);
$table->double("codebattle")->default(0);
$table->integer("payment_date_start");
$table->integer("payment_date_end");
$table->boolean("paied");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}
пример из ошибки
Notice in .\libraries\classes\Display\Results.php#1086
Undefined offset: 14
Backtrace
.\libraries\classes\Display\Results.php#1220: PhpMyAdmin\Display\Results->_getTableHeadersForColumns(
array,
array,
array,
array,
array,
boolean true,
string '',
)
.\libraries\classes\Display\Results.php#4292: PhpMyAdmin\Display\Results->_getTableHeaders(
array,
array,
string '',
array,
array,
array,
boolean true,
)
.\libraries\classes\Sql.php#1666: PhpMyAdmin\Display\Results->getTable(
,
array,
array,
boolean true,
)
.\libraries\classes\Sql.php#1468: PhpMyAdmin\Sql->getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean false,
integer 0,
integer 0,
boolean true,
,
array,
boolean true,
)
.\libraries\classes\Sql.php#2250: PhpMyAdmin\Sql->getQueryResponseForNoResultsReturned(
array,
string 'profitdeco',
string 'users',
NULL,
integer 0,
,
NULL,
string './themes/pmahomme/img/',
NULL,
,
string 'SELECT * FROM `users`',
NULL,
)
.\libraries\classes\Sql.php#2100: PhpMyAdmin\Sql->executeQueryAndGetQueryResponse(
array,
boolean true,
string 'profitdeco',
string 'users',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `users`',
NULL,
NULL,
)
.\sql.php#241: PhpMyAdmin\Sql->executeQueryAndSendQueryResponse(
array,
boolean true,
string 'profitdeco',
string 'users',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `users`',
NULL,
NULL,
)