ctrlpanel/database/migrations/2023_05_08_094402_update_user_credits_datatype.php
2024-04-12 21:01:49 +02:00

33 lines
688 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdateUserCreditsDatatype extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->decimal('credits', 15, 4)->default(0)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->decimal('credits', ['11', '2'])->change();
});
}
}