Compare commits
2 Commits
1ae98bcc26
...
eed6c3dbaa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eed6c3dbaa | ||
|
|
deb702c68e |
@@ -124,7 +124,8 @@
|
||||
'amount_fcy_2' => 'amount_fcy_2',
|
||||
'rate_2' => 'rate_2',
|
||||
'customer_1' => 'customer_1',
|
||||
'last_version' => 'last_version'
|
||||
'last_version' => 'last_version',
|
||||
'dealer_desk' => 'dealer_desk',
|
||||
];
|
||||
|
||||
private string $period = '';
|
||||
|
||||
@@ -112,6 +112,7 @@
|
||||
'amount_fcy_2',
|
||||
'rate_2',
|
||||
'customer_1',
|
||||
'last_version'
|
||||
'last_version',
|
||||
'dealer_desk'
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<?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('tellers', function (Blueprint $table) {
|
||||
$table->string('dealer_desk')->nullable()->after('last_version');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('tellers', function (Blueprint $table) {
|
||||
$table->dropColumn('dealer_desk');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user