database table narrativa

master
cgonzalesmo 2022-10-07 19:35:47 -05:00
parent adae29fd81
commit 224c2e5c64
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
<?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('narrativas', function (Blueprint $table) {
$table->id();
$table->integer('year');
$table->string('semestre',255);
$table->mediumText('cabecera');
$table->mediumText('contenido');
$table->foreignId('id_plan')
->constrained('plans')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('narrativas');
}
};