mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-28 17:03:59 +00:00
Merge branch 'dillon/76-new-voucherify-voucher' into vapor/development
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddIsVoucherCodeUniqueToVoucherCampaignsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('voucher_campaigns', function (Blueprint $table) {
|
||||
$table->boolean('is_voucher_code_unique')->default(false)->after('is_display');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('voucher_campaigns', function (Blueprint $table) {
|
||||
$table->dropColumn('is_voucher_code_unique');
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user