diff --git a/database/migrations/2023_04_01_000000_create_products_table.php b/database/migrations/2023_04_01_000000_create_products_table.php deleted file mode 100644 index b787ce9..0000000 --- a/database/migrations/2023_04_01_000000_create_products_table.php +++ /dev/null @@ -1,32 +0,0 @@ -id(); - $table->string('name'); - $table->string('description'); - $table->decimal('price', 8, 2); - $table->string('category'); - $table->integer('inventory_count'); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down() - { - Schema::dropIfExists('products'); - } -}