<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePagesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('pages', function (Blueprint $table) { $table->id(); $table->unsignedInteger('admin_id'); $table->string('url'); $table->text('name'); $table->text('title'); $table->text('description')->comment("This will be added in <head\> tag"); $table->enum('status',['published','unpublished']); $table->enum('position',['header','footer']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } }