unsignedBigInteger('like_nums')->default(0)->comment('点赞数'); $table->unsignedBigInteger('read_nums')->default(0)->comment('阅读数'); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('articles', function (Blueprint $table) { // $table->dropColumn(['like_nums', 'read_nums']); }); } };