<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSurveyTemplatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('survey_templates', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->index()->unsigned();
$table->string('title');
$table->text('description');
$table->enum('status', ['Open', 'Close'])->default('Open');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('survey_templates');
}
}