This commit is contained in:
Felipe
2024-04-27 16:52:31 -05:00
parent 7250b4abf4
commit 374f3cbb69
6 changed files with 88 additions and 280 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('configuraciones', function (Blueprint $table) {
$table->string('catalogo')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('configuraciones', function (Blueprint $table) {
$table->dropColumn('catalogo');
});
}
};