Migration References->referencesUser: Changes $setPrimary from true to false

This commit is contained in:
Igor Scheller 2019-12-08 02:09:52 +01:00
parent ad6b48bd20
commit 72123fcd31
5 changed files with 9 additions and 9 deletions

View File

@ -36,7 +36,7 @@ class CreateUsersTables extends Migration
});
$this->schema->create('users_personal_data', function (Blueprint $table) {
$this->referencesUser($table);
$this->referencesUser($table, true);
$table->string('first_name', 64)->nullable();
$table->string('last_name', 64)->nullable();
@ -47,7 +47,7 @@ class CreateUsersTables extends Migration
});
$this->schema->create('users_contact', function (Blueprint $table) {
$this->referencesUser($table);
$this->referencesUser($table, true);
$table->string('dect', 5)->nullable();
$table->string('mobile', 40)->nullable();
@ -55,7 +55,7 @@ class CreateUsersTables extends Migration
});
$this->schema->create('users_settings', function (Blueprint $table) {
$this->referencesUser($table);
$this->referencesUser($table, true);
$table->string('language', 64);
$table->tinyInteger('theme');
@ -64,7 +64,7 @@ class CreateUsersTables extends Migration
});
$this->schema->create('users_state', function (Blueprint $table) {
$this->referencesUser($table);
$this->referencesUser($table, true);
$table->boolean('arrived')->default(false);
$table->dateTime('arrival_date')->nullable();
@ -75,7 +75,7 @@ class CreateUsersTables extends Migration
});
$this->schema->create('password_resets', function (Blueprint $table) {
$this->referencesUser($table);
$this->referencesUser($table, true);
$table->text('token');

View File

@ -76,7 +76,7 @@ class CreateNewsTable extends Migration
$table->string('title', 150);
$table->text('text');
$table->boolean('is_meeting')->default(0);
$this->referencesUser($table, false);
$this->referencesUser($table);
$table->timestamps();
});
}

View File

@ -64,7 +64,7 @@ class CreateNewsCommentsTable extends Migration
$table->increments('id');
$this->references($table, 'news', 'news_id');
$table->text('text');
$this->referencesUser($table, false);
$this->referencesUser($table);
$table->timestamps();
});
}

View File

@ -74,7 +74,7 @@ class CreateQuestionsTable extends Migration
'questions',
function (Blueprint $table) {
$table->increments('id');
$this->referencesUser($table, false);
$this->referencesUser($table);
$table->text('text');
$table->text('answer')
->nullable();

View File

@ -11,7 +11,7 @@ trait Reference
* @param Blueprint $table
* @param bool $setPrimary
*/
protected function referencesUser(Blueprint $table, $setPrimary = true)
protected function referencesUser(Blueprint $table, $setPrimary = false)
{
$this->references($table, 'users', 'user_id', $setPrimary);
}