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