mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
update
This commit is contained in:
parent
3dd566bb68
commit
080c13b8af
8 changed files with 9 additions and 37 deletions
|
@ -15,8 +15,4 @@ class DomainDkim extends Model
|
|||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): DomainDkimFactory
|
||||
{
|
||||
//return DomainDkimFactory::new();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class DomainDkimSigning extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): DomainDkimSigningFactory
|
||||
{
|
||||
//return DomainDkimSigningFactory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class EmailAlias extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): EmailAliasFactory
|
||||
{
|
||||
//return EmailAliasFactory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class EmailAliasDomain extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): EmailAliasDomainFactory
|
||||
{
|
||||
//return EmailAliasDomainFactory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class EmailBox extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): EmailBoxFactory
|
||||
{
|
||||
//return EmailBoxFactory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class EmailQuota extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): EmailQuotaFactory
|
||||
{
|
||||
//return EmailQuotaFactory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,9 +14,5 @@ class EmailQuota2 extends Model
|
|||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [];
|
||||
|
||||
protected static function newFactory(): EmailQuota2Factory
|
||||
{
|
||||
//return EmailQuota2Factory::new();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -11,9 +11,9 @@ return new class extends Migration
|
|||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('email_quota2', function (Blueprint $table) {
|
||||
Schema::create('email_quotas2', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
|
||||
$table->string('username', 100)->nullable();
|
||||
$table->bigInteger('bytes')->default(0);
|
||||
$table->integer('messages')->nullable();
|
||||
|
@ -27,6 +27,6 @@ return new class extends Migration
|
|||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('email_quota2');
|
||||
Schema::dropIfExists('email_quotas2');
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue