Commit 1cb1c537 by Vladislav

#19500 Синхронизация модификаторов.

1 parent 335b71d6
......@@ -44,7 +44,7 @@ class GetRetargetinglists extends DirectRequest
function handle($response)
{
try {
if (isset($response['result']['VCards'])) {
if (isset($response['result']['RetargetingLists'])) {
foreach ($response['result']['RetargetingLists'] as $retargeting_list) {
$external_id = (string)$retargeting_list['Id'];
......
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddRetargetinglistsExternalIdColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('retargetinglists', function (Blueprint $table) {
$table->bigInteger('external_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!