<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateParticipantsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('survey_participants', function (Blueprint $table) {
$table->increments('id');
$table->integer('template_id')->unsigned()->index();
$table->string('email');
$table->string('name');
$table->string('loc_lat');
$table->string('loc_long');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('survey_participants');
}
}