Edit File: 2025_02_26_105914_create_delegate_updates_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDelegateUpdatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('delegate_updates', function (Blueprint $table) { $table->id(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('delegate_updates'); } }
Back to File Manager