flexisip-account-manager/flexiapi/app/AccountTombstone.php
Timothée Jaussoin 63a690d6b2 Save the removed accounts in a "tombstones" table to prevent them to be recreated
Add a Console commande to clear the old tombstones
Update the documentation
2021-09-07 15:52:21 +02:00

13 lines
227 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class AccountTombstone extends Model
{
protected $table = 'accounts_tombstones';
use HasFactory;
}