nodeloc/flarum-ext-leaderboard
Installation
composer require nodeloc/flarum-ext-leaderboard:"*"
Updating
To the next minor version:
composer update nodeloc/flarum-ext-leaderboard
To the latest compatible version:
composer require nodeloc/flarum-ext-leaderboard:"*"
安装后发帖回帖提示错误,但是实际成功了。需要在users表要加两个整数型字段 monthly_comment_count ,monthly_discussion_count
ALTER TABLE users
ADD monthly_comment_count INT NOT NULL DEFAULT 0,
ADD monthly_discussion_count INT NOT NULL DEFAULT 0;