관리-도구
편집 파일: 2024_11_08_231435_create_gigs_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGigsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('gigs', function (Blueprint $table) { $table->id(); $table->string('image'); // Image ka URL yahan store hoga $table->string('link'); // External ya internal link $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('gigs'); } }