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