refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
use App\Models\Contact\Contact;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class RemoveContactEncryption extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
* @psalm-suppress UndefinedMagicPropertyAssignment
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
$contacts = Contact::all();
|
||||
foreach ($contacts as $contact) {
|
||||
echo $contact->id;
|
||||
if (! is_null($contact->email)) {
|
||||
$contact->email = decrypt($contact->email);
|
||||
}
|
||||
|
||||
if (! is_null($contact->phone_number)) {
|
||||
$contact->phone_number = decrypt($contact->phone_number);
|
||||
}
|
||||
|
||||
if (! is_null($contact->street)) {
|
||||
$contact->street = decrypt($contact->street);
|
||||
}
|
||||
|
||||
if (! is_null($contact->city)) {
|
||||
$contact->city = decrypt($contact->city);
|
||||
}
|
||||
|
||||
if (! is_null($contact->province)) {
|
||||
$contact->province = decrypt($contact->province);
|
||||
}
|
||||
|
||||
if (! is_null($contact->postal_code)) {
|
||||
$contact->postal_code = decrypt($contact->postal_code);
|
||||
}
|
||||
|
||||
if ($contact->is_birthdate_approximate == 'true') {
|
||||
$contact->is_birthdate_approximate = 'approximate';
|
||||
}
|
||||
|
||||
if ($contact->is_birthdate_approximate == 'false') {
|
||||
$contact->is_birthdate_approximate = 'exact';
|
||||
}
|
||||
$contact->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user