We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f234f commit 2a0685fCopy full SHA for 2a0685f
tests/TestCase.php
@@ -30,6 +30,15 @@ protected function migrateDatabase(): void
30
$table->boolean('is_active')->default(true);
31
$table->timestamps();
32
});
33
+
34
+ Schema::dropIfExists('users_bool_no_default');
35
+ Schema::create('users_bool_no_default', function (Blueprint $table) {
36
+ $table->increments('id');
37
+ $table->string('name');
38
+ $table->string('email');
39
+ $table->boolean('is_active');
40
+ $table->timestamps();
41
+ });
42
}
43
44
protected function seedDatabase(): void
0 commit comments