Add order column to twofaccounts table

This commit is contained in:
Bubka 2020-03-26 01:37:39 +01:00
parent a70606d57d
commit 15cd56aae1

View File

@ -0,0 +1,40 @@
<?php
use App\TwoFAccount;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddOrderColumnToTwofaccountsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('twofaccounts', function (Blueprint $table) {
$table->integer('order_column')->nullable();
});
// The primary index is used to set a default value for the newly
// created order_column
foreach (TwoFAccount::get() as $twofaccount) {
$twofaccount->order_column = $twofaccount->id;
$twofaccount->save();
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('twofaccounts', function (Blueprint $table) {
$table->dropColumn('order_column');
});
}
}