<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddUrlToCategoriesTable extends Migration
{
public function up()
{
Schema::table('categories', function (Blueprint $table) {
$table->string('url')->default('')->after('name');
});
}
public function down()
{
Schema::table('categories', function (Blueprint $table) {
$table->dropColumn('url');
});
}
}