29 lines
707 B
PHP
29 lines
707 B
PHP
<?php
|
|
|
|
use App\Models\Account\Account;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use App\Services\Auth\Population\PopulateModulesTable;
|
|
|
|
class MigrateModules extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Account::chunk(200, function ($accounts) {
|
|
foreach ($accounts as $account) {
|
|
app(PopulateModulesTable::class)->execute([
|
|
'account_id' => $account->id,
|
|
'migrate_existing_data' => false,
|
|
]);
|
|
}
|
|
});
|
|
|
|
DB::table('default_contact_modules')->update(['migrated' => 1]);
|
|
}
|
|
}
|