diff --git a/database/migrations/2020_03_25_095517_add_order_column_to_twofaccounts_table.php b/database/migrations/2020_03_25_095517_add_order_column_to_twofaccounts_table.php new file mode 100644 index 00000000..21c6488e --- /dev/null +++ b/database/migrations/2020_03_25_095517_add_order_column_to_twofaccounts_table.php @@ -0,0 +1,40 @@ +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'); + }); + } +}