We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b3656 commit a4c073fCopy full SHA for a4c073f
database/migrations/create_priceable_tables.php.stub
@@ -70,9 +70,9 @@ return new class extends Migration
70
*/
71
public function down()
72
{
73
- Schema::dropIfExists(config('priceable.tables.vat_rates'));
74
- Schema::dropIfExists(config('priceable.tables.currencies'));
75
- Schema::dropIfExists(config('priceable.tables.price_types'));
76
Schema::dropIfExists(config('priceable.tables.prices'));
+ Schema::dropIfExists(config('priceable.tables.price_types'));
+ Schema::dropIfExists(config('priceable.tables.currencies'));
+ Schema::dropIfExists(config('priceable.tables.vat_rates'));
77
}
78
};
0 commit comments