Fixes the configuration file
This commit is contained in:
@@ -16,7 +16,7 @@ public function up(): void
|
||||
Schema::create('screenings', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
||||
$table->integer('score')->nullable();
|
||||
$table->decimal('score', 4, 1)->nullable();
|
||||
$table->boolean('passed')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user