Schema::create('user_params', function (Blueprint $table) { $table->increments('id'); $table->string('login'); $table->string('versionApp'); $table->string('platform'); $table->timestamps(); }); Why is the wrong time recorded in the database? I work in Laravel;