fix: 🐛 Added Migration -> Updated user credits column to be decimal

This commit is contained in:
IceToast 2022-06-16 11:56:05 +02:00
parent 950278c948
commit 8383fa03aa

View file

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