1
0
forked from poc/pds

Added work_center column in machines table

This commit is contained in:
dhanabalan
2025-07-03 12:21:23 +05:30
parent 710ff318ef
commit e958a036c7

View File

@@ -0,0 +1,33 @@
<?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 machines
ADD work_center TEXT DEFAULT NULL;
SQL;
DB::statement($sql);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('machines', function (Blueprint $table) {
// //
// });
}
};