Closed osama-98 closed 7 months ago
Hello, I'm facing an issue in priority in migrations only.
Schema::create('books', function (Blueprint $table) { $table->id(); $table->json('name'); $table->string('code')->unique(); $table->foreignId('user_id')->nullable()->constrained('users')->nullOnDelete(); $table->timestamps(); $table->softDeletes(); });
I have the priorities as below:
When I do php artisan module:migrate I expect the modules will be migrated as their priorities UserModule and then BookModule. However, it does not. It seems it is working alphabetically in migrations; Since, the BookModule worked before UserModule
php artisan module:migrate
@dcblogdev
We've pushed a release to address this.
Hello, I'm facing an issue in priority in migrations only.
I have the priorities as below:
When I do
php artisan module:migrate
I expect the modules will be migrated as their priorities UserModule and then BookModule. However, it does not. It seems it is working alphabetically in migrations; Since, the BookModule worked before UserModule