Se agrego tipo a log_general.

This commit is contained in:
lizandrogd
2025-02-27 10:55:12 -05:00
parent 33859c8777
commit 76bd9df10e
10 changed files with 54 additions and 3 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('tipo')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('log_general', function (Blueprint $table) {
$table->dropColumn('tipo');
});
}
};