|
@@ -4,7 +4,7 @@ use Illuminate\Database\Migrations\Migration;
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
-class RenameConfigurationsTable extends Migration
|
|
|
+return new class extends Migration
|
|
|
{
|
|
|
/**
|
|
|
* Run the migrations.
|
|
@@ -57,4 +57,4 @@ class RenameConfigurationsTable extends Migration
|
|
|
DB::table('configurations')->where('key', 'SETTINGS::SERVER:CREDITS_DISPLAY_NAME')->update(['key' => 'SETTINGS::SYSTEM:CREDITS_DISPLAY_NAME']);
|
|
|
DB::table('configurations')->where('key', 'SETTINGS::PAYMENTS:SALES_TAX')->update(['key' => 'SALES_TAX']);
|
|
|
}
|
|
|
-}
|
|
|
+};
|