Edit File: 2020_09_08_093925_create_seos_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSeosTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('seos', function (Blueprint $table) { $table->id(); $table->longText('key'); $table->longText('meta_title'); $table->longText('meta_description'); $table->longText('meta_keywords'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('seos'); } }
Back to File Manager