public function round_first() {
return $this->rounds()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 1);
}
public function round_second() {
return $this->rounds()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 2);
}
public function round_third() {
return $this->rounds()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 3);
}
public function tournament_first() {
return $this->tournaments()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 1);
}
public function tournament_second() {
return $this->tournaments()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 2);
}
public function tournament_third() {
return $this->tournaments()
- ->whereNot('locked')
+ ->where('locked', true)
+ ->where('no_record', false)
->wherePivot('placement', 3);
}
--- /dev/null
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table('rounds', function(Blueprint $table) {
+ $table->boolean('no_record')->default(false);
+ });
+ Schema::table('tournaments', function(Blueprint $table) {
+ $table->boolean('no_record')->default(false);
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table('rounds', function(Blueprint $table) {
+ $table->dropColumn('no_record');
+ });
+ Schema::table('tournaments', function(Blueprint $table) {
+ $table->dropColumn('no_record');
+ });
+ }
+};