Files
exchange-2.0/database/migrations/2023_05_27_050522_create_vouchers_table.php
2023-05-30 22:02:09 +08:00

36 lines
771 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateVouchersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('vouchers', function (Blueprint $table) {
$table->id();
$table->string('name')->nullable();
$table->string('code');
$table->string('type')->nullable();
$table->decimal('value', 8, 2)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('vouchers');
}
}