Commit c2c723c8 by Vladislav

#19472 Синхронизация групп с целевыми

1 parent 42b5942f
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ChangeAdGroupsColumnNullable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('ad_groups', function (Blueprint $table) {
$table->bigInteger('campaign_id')->unsigned()->nullable()->change();
$table->bigInteger('campaign_external_id')->nullable()->change();
});
}
/**
* 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!