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

This commit is contained in:
IceToast 2022-06-16 11:56:05 +02:00 committed by IceToast
parent 88a8541623
commit 23cc70d79c
No known key found for this signature in database
GPG key ID: 1464353E063A5B97

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();
});
}
}