removed image path column in sticker details #70

Merged
jothi merged 1 commits from ranjith-dev into master 2025-12-25 07:36:57 +00:00

View File

@@ -0,0 +1,28 @@
<?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
{
Schema::table('sticker_details', function (Blueprint $table) {
$table->dropColumn('image_path');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('sticker_details', function (Blueprint $table) {
// //
// });
}
};