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 26928ef commit 8d65bc3Copy full SHA for 8d65bc3
tests/Integration/Migration/MigratorTest.php
@@ -79,6 +79,10 @@ public function testWithSkippedMigrations(string $filename)
79
$this->assertTrue(DB::getSchemaBuilder()->hasTable('people'));
80
$this->assertFalse(DB::getSchemaBuilder()->hasColumn('people', 'first_name'));
81
$this->assertTrue(DB::getSchemaBuilder()->hasColumn('people', 'last_name'));
82
+
83
+ Migrator::withoutMigrations([]);
84
+ $this->subject->run([__DIR__.'/fixtures']);
85
+ $this->assertTrue(DB::getSchemaBuilder()->hasColumn('people', 'first_name'));
86
}
87
88
public function testRollback()
0 commit comments