id(); $table->string('name'); //cambiar el name por nombre $table->timestamps(); //$table->foreign('id_user')->references('id')->on('users'); $table->foreignId('id_user') ->constrained('users'); }); } public function down() { Schema::dropIfExists('estandars'); } };