Rename user posts count to comments count

This commit is contained in:
Toby Zerner
2015-03-12 10:34:59 +10:30
parent 64b6698791
commit 2882ecd46e
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ class CreateUsersTable extends Migration {
$table->dateTime('last_seen_time')->nullable();
$table->dateTime('read_time')->nullable();
$table->integer('discussions_count')->unsigned()->default(0);
$table->integer('posts_count')->unsigned()->default(0);
$table->integer('comments_count')->unsigned()->default(0);
});
}