database/migrations/create_chat_tables.php
Method up
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function up()
{
Schema::create(ConfigurationManager::CONVERSATIONS_TABLE, function (Blueprint $table) {
$table->bigIncrements('id');
$table->boolean('private')->default(true);