historial_id

This commit is contained in:
lizandrogd
2025-02-27 15:19:52 -05:00
parent 0379968258
commit c0e3284c62
9 changed files with 54 additions and 2 deletions
@@ -0,0 +1,32 @@
<?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::table('log_general', function (Blueprint $table) {
$table->string('historial_id')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('log_general', function (Blueprint $table) {
$table->dropColumn('historial_id');
});
}
};