1
0
forked from poc/pds

changed data type of column received_quantity in process orders table

This commit is contained in:
dhanabalan
2025-11-20 12:16:43 +05:30
parent 4f5791a260
commit 5c6c6e56ac

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$sql = <<<'SQL'
ALTER TABLE process_orders
ALTER COLUMN received_quantity TYPE NUMERIC
USING received_quantity::NUMERIC;
SQL;
DB::statement($sql);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('process_orders', function (Blueprint $table) {
// //
// });
}
};