40 lines
910 B
PHP
40 lines
910 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('evidencias', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('codigo', 16);
|
|
$table->string('denominacion');
|
|
$table->string('adjunto');
|
|
$table->foreignId('id_user')
|
|
->constrained('users');
|
|
$table->foreignId('id_plan')
|
|
->constrained('plans')
|
|
->onDelete('cascade');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('evidencias');
|
|
}
|
|
};
|