Refactor the database, in preparation to moving to postgresql

This commit is contained in:
Deon George
2022-10-23 13:46:46 +11:00
parent 2495e4675c
commit 5745c67538
45 changed files with 530 additions and 1553 deletions

View File

@@ -3,9 +3,12 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Nodelist extends Model
{
use SoftDeletes;
protected $dates = ['date'];
protected $fillable = ['date','domain_id'];