<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class BlogFieldsModify extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('blog', function (Blueprint $table) {
$table->tinyInteger('isTop')->nullable()->comment('置顶');
$table->integer('commentCount')->nullable()->comment('评论数量');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}