<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
class V290 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('pages', function(Blueprint $table)
{
$table->index('slug', 'slug');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}