Ver código fonte

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

IceToast 3 anos atrás
pai
commit
8383fa03aa

+ 32 - 0
database/migrations/2022_06_16_094402_update_user_price_datatype.php

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