File "2015_12_01_094436_contact_form.php"

Full Path: /home/isoftco/public_html/hrm/database/migrations/2015_12_01_094436_contact_form.php
File size: 796 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class ContactForm extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create("contact_requests", function(Blueprint $table) {
            $table->increments("id");
            $table->string("name", 70);
            $table->string("email", 255);
            $table->string("category", 50);
            $table->string("details", 1000);
            $table->enum("status", ["Pending", "Completed"]);
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists("contact_requests");
    }
}