mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
Change default discussion comment count
This allows new public discussions to be immediately visible by users.
This commit is contained in:
parent
0d57820b50
commit
4c50c8d77a
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
* For detailed copyright and license information, please view the
|
||||
* LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Schema\Builder;
|
||||
|
||||
return [
|
||||
'up' => function (Builder $schema) {
|
||||
$schema->table('discussions', function (Blueprint $table) {
|
||||
$table->integer('comment_count')->default(1)->change();
|
||||
});
|
||||
},
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('discussions', function (Blueprint $table) {
|
||||
$table->integer('comment_count')->default(0)->change();
|
||||
});
|
||||
}
|
||||
];
|
Loading…
Reference in New Issue
Block a user