Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 3b8c403

Browse files
committed
🚑 removed migrations from autoloading
1 parent 26efa6e commit 3b8c403

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

app/database/migrations/2019_11_18_133625_create_users.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
namespace App\Database\Migrations;
4-
53
use Leaf\Database;
64
use Illuminate\Database\Schema\Blueprint;
75
use Leaf\Schema;

app/database/migrations/2019_11_18_155705_create_password_resets.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
namespace App\Database\Migrations;
4-
53
use Leaf\Database;
64

75
class CreatePasswordResets extends Database {

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"App\\": "app/",
4242
"Config\\": "config/",
4343
"App\\Http\\": "app/http/",
44+
"App\\Jobs\\": "app/jobs/",
4445
"App\\Views\\": "app/views/",
4546
"App\\Utils\\": "app/utils/",
4647
"App\\Models\\": "app/models/",
@@ -52,8 +53,7 @@
5253
"App\\Controllers\\": "app/controllers/",
5354
"App\\Database\\Seeds\\": "app/database/Seeds/",
5455
"App\\Database\\Schema\\": "app/database/Schema/",
55-
"App\\Database\\Factories\\": "app/database/factories/",
56-
"App\\Database\\Migrations\\": "app/database/Migrations/"
56+
"App\\Database\\Factories\\": "app/database/factories/"
5757
}
5858
},
5959
"config": {

0 commit comments

Comments
 (0)