369c730f创建于 2023年8月23日历史提交
<?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()
    {

    }
}