改进 decimal total

This commit is contained in:
iVampireSP.com 2023-01-18 00:06:49 +08:00
parent ca65fda477
commit c549a4dcae
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -0,0 +1,39 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->decimal('balance', 20, 4)->change();
});
Schema::table('modules', function (Blueprint $table) {
$table->decimal('balance', 20, 4)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->decimal('balance', 10)->change();
});
Schema::table('modules', function (Blueprint $table) {
$table->decimal('balance', 10)->change();
});
}
};