-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 2024_09_30_000442_update_voucher_sets_add_currency_country_id.php
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
database/migrations/2024_09_30_000442_update_voucher_sets_add_currency_country_id.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::table('voucher_sets', function (Blueprint $table) { | ||
|
||
$table->unsignedBigInteger('currency_country_id') | ||
->nullable() | ||
->index('vs_cci') | ||
->after('voucher_template_id'); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
|
||
Schema::table('voucher_sets', function (Blueprint $table) { | ||
$table->dropColumn('currency_country_id'); | ||
}); | ||
} | ||
}; |