src/resources/migrations/2015_05_14_154814_create_carts_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCartsTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('carts', function (Blueprint $table) {
$table->increments('id');
$table->string('voucher')->index();
$table->string('email')->index();
$table->string('token')->index();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('carts');
}
}