Edit File: 2021_12_28_093059_create_sponsers_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSponsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sponsers', function (Blueprint $table) { $table->id(); $table->string('name')->nullable(); $table->string('image')->nullable(); $table->string('url')->nullable(); $table->enum('show' , ['true' , 'false'])->default('true'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sponsers'); } }
Back to File Manager