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