This commit is contained in:
Bozhidar 2024-09-18 16:27:29 +03:00
parent 3dd566bb68
commit 080c13b8af
8 changed files with 9 additions and 37 deletions

View file

@ -15,8 +15,4 @@ class DomainDkim extends Model
*/
protected $fillable = [];
protected static function newFactory(): DomainDkimFactory
{
//return DomainDkimFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class DomainDkimSigning extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): DomainDkimSigningFactory
{
//return DomainDkimSigningFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class EmailAlias extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): EmailAliasFactory
{
//return EmailAliasFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class EmailAliasDomain extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): EmailAliasDomainFactory
{
//return EmailAliasDomainFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class EmailBox extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): EmailBoxFactory
{
//return EmailBoxFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class EmailQuota extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): EmailQuotaFactory
{
//return EmailQuotaFactory::new();
}
}

View file

@ -14,9 +14,5 @@ class EmailQuota2 extends Model
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): EmailQuota2Factory
{
//return EmailQuota2Factory::new();
}
}

View file

@ -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');
}
};