chore: remove unused file and associated references

This commit is contained in:
Ümit Tunç
2026-04-28 23:56:36 +03:00
parent 90d0a2a041
commit 04952a32df
2 changed files with 0 additions and 82 deletions
@@ -1,25 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductsTable extends Migration
{
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->id();
$table->string('title')->nullable();
$table->decimal('price', 15, 2)->nullable();
$table->string('category')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
public function down()
{
Schema::dropIfExists('products');
}
}