Voucherify - New promotion voucher (PROM150%) setup

This commit is contained in:
Dillon Ngo
2024-08-25 12:43:33 +08:00
parent 834c65ccea
commit b7fd252bf0
14 changed files with 136 additions and 49 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddDescriptionToVouchersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('vouchers', function (Blueprint $table) {
$table->text('description')->after('name')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('vouchers', function (Blueprint $table) {
$table->dropColumn('description');
});
}
}