id(); $table->date('fecha'); $table->string('titulo', 255); $table->foreignId('id_estandar') ->constrained('estandars'); $table->string('file', 255); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('actas'); } };