Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
riasvdv committed Oct 30, 2021
1 parent b14c115 commit 59f6e46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Eloquent/Errors/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Error extends Model
'last_seen_at' => 'timestamp',
];

protected $keyType = 'uuid';
protected $keyType = 'string';
protected $primaryKey = 'uuid';
public $timestamps = false;

Expand Down
2 changes: 1 addition & 1 deletion src/Eloquent/Errors/Hit.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ class Hit extends Model
'data' => 'json',
];

protected $keyType = 'uuid';
protected $keyType = 'string';
protected $primaryKey = 'uuid';
}
2 changes: 1 addition & 1 deletion src/Eloquent/Redirects/Redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class Redirect extends Model
'enabled' => 'boolean',
];

protected $keyType = 'uuid';
protected $keyType = 'string';
protected $primaryKey = 'uuid';
}

0 comments on commit 59f6e46

Please sign in to comment.