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 7d505a9 commit ffcc5d6Copy full SHA for ffcc5d6
tests/Mysql/MigrateLoadTest.php
@@ -24,6 +24,8 @@ public function test_handle()
24
\DB::table('migrations')->value('migration')
25
);
26
27
+ $this->assertEquals(0, \DB::table('test_ms')->count());
28
+
29
$table_name = \DB::table('information_schema.tables')
30
->where('table_schema', \DB::getDatabaseName())
31
->whereNotIn('table_name', ['migrations'])
tests/Postgresql/MigrateLoadTest.php
@@ -25,6 +25,8 @@ public function test_handle()
->where('table_catalog', \DB::getDatabaseName())
32
->where('table_schema', 'public')
0 commit comments