29197090a7
The idea is to clean the repository a little bit by moving models into their respective folders.
24 lines
494 B
PHP
24 lines
494 B
PHP
<?php
|
|
|
|
use App\Models\Contact\Contact;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class UsersColorSeeder extends Seeder
|
|
{
|
|
/**
|
|
* This is a one-time migration. It was used to populate the default
|
|
* user color for the avatars when the feature got introduced.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$contacts = Contact::all();
|
|
|
|
foreach ($contacts as $contact) {
|
|
$contact->setAvatarColor();
|
|
$contact->save();
|
|
}
|
|
}
|
|
}
|