medal add sale_begin_time + sale_end_time + inventory

This commit is contained in:
xiaomlove
2023-01-25 20:22:32 +08:00
parent 3762c15dc7
commit 1ca8502b91
13 changed files with 149 additions and 11 deletions
@@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('medals', function (Blueprint $table) {
$table->dateTime('sale_begin_time')->nullable(true);
$table->dateTime('sale_end_time')->nullable(true);
$table->integer('inventory')->nullable(true);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('medals', function (Blueprint $table) {
$table->dropColumn(['sale_begin_time', 'sale_end_time', 'inventory']);
});
}
};