BugTracker has been moved to plugins, remove the model

This commit is contained in:
slawkens
2026-04-11 18:13:25 +02:00
parent 4145d9eb3c
commit 7bc8a66cc1

View File

@@ -1,15 +0,0 @@
<?php
namespace MyAAC\Models;
use Illuminate\Database\Eloquent\Model;
class BugTracker extends Model {
protected $table = TABLE_PREFIX . 'bugtracker';
public $timestamps = false;
protected $fillable = ['account', 'type', 'status', 'text', 'id', 'subject', 'reply', 'who', 'uid', 'tag'];
}