add stores skus table

This commit is contained in:
2025-11-13 15:14:26 +08:00
parent c12c7df34e
commit e3cc31b947
2 changed files with 82 additions and 0 deletions
@@ -0,0 +1,28 @@
<?php
use Hyperf\Database\Schema\Schema;
use Hyperf\Database\Schema\Blueprint;
use Hyperf\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('skus', function (Blueprint $table) {
$table->bigIncrements('id');
$table->datetimes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('skus');
}
};