File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public function up(): void
1414 $ tableName = config ('devlogger.table_name ' , 'developer_logs ' );
1515 $ connection = config ('devlogger.database_connection ' , null );
1616
17- $ schema = $ connection ? Schema::connection ($ connection ) : Schema:: connection () ;
17+ $ schema = $ connection ? Schema::connection ($ connection ) : Schema;
1818
1919 $ schema ->create ($ tableName , function (Blueprint $ table ) {
2020 $ table ->id ();
@@ -52,7 +52,7 @@ public function down(): void
5252 $ tableName = config ('devlogger.table_name ' , 'developer_logs ' );
5353 $ connection = config ('devlogger.database_connection ' , null );
5454
55- $ schema = $ connection ? Schema::connection ($ connection ) : Schema:: connection () ;
55+ $ schema = $ connection ? Schema::connection ($ connection ) : Schema;
5656
5757 $ schema ->dropIfExists ($ tableName );
5858 }
You can’t perform that action at this time.
0 commit comments