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 34c720b commit be361ffCopy full SHA for be361ff
tests/models/MysqlUser.php
@@ -42,6 +42,11 @@ public static function executeSchema()
42
{
43
$schema = Schema::connection('mysql');
44
45
+ if (!$schema->hasTable('users'))
46
+ {
47
+ Schema::connection('mysql')->create('users', function($table) {});
48
+ }
49
+
50
if (!$schema->hasColumn('users', 'id'))
51
52
Schema::connection('mysql')->table('users', function($table)
0 commit comments