Added remark column in invoice data validations #197

Merged
jothi merged 1 commits from ranjith-dev into master 2026-01-20 04:58:04 +00:00

View File

@@ -0,0 +1,31 @@
<?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
{
$sql1 = <<<'SQL'
ALTER TABLE invoice_data_validations
ADD COLUMN remark TEXT DEFAULT NULL
SQL;
DB::statement($sql1);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('invoice_data_validations', function (Blueprint $table) {
// //
// });
}
};