]> git.localhorst.tv Git - alttp.git/commitdiff
cast user ID references to string
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 27 Oct 2022 10:43:57 +0000 (12:43 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 27 Oct 2022 10:43:57 +0000 (12:43 +0200)
app/Models/Application.php
app/Models/Participant.php
app/Models/Protocol.php
app/Models/Round.php

index 327d3fb9d87206f918529490f790561aec40da6e..100da43b8e40ade04e7fa38523fbbabf81d14b77 100644 (file)
@@ -18,6 +18,10 @@ class Application extends Model
                return $this->belongsTo(User::class);
        }
 
+       protected $casts = [
+               'user_id' => 'string',
+       ];
+
        protected $with = [
                'user',
        ];
index 38ecfdadf458a413ce71043a22ff69cb9a655ca1..6e8abbe2ea40d5b99ea5c1d91723e68417f28ef1 100644 (file)
@@ -106,6 +106,7 @@ class Participant extends Model
 
        protected $casts = [
                'roles' => 'array',
+               'user_id' => 'string',
        ];
 
        protected $fillable = [
index ce081e77dded2c6bf7f92af76381d1a0364e54e6..b747b1258d147472ad0a158d97f80e319f915943 100644 (file)
@@ -288,6 +288,7 @@ class Protocol extends Model
 
        protected $casts = [
                'details' => 'array',
+               'user_id' => 'string',
        ];
 
        protected $fillable = [
index 0f4847a7edb3bc38a7abb0adf977fd05a1881f8d..7daa77957da58769f332421c6b7840407badb74e 100644 (file)
@@ -111,6 +111,7 @@ class Round extends Model
                'code' => 'array',
                'locked' => 'boolean',
                'no_record' => 'boolean',
+               'rolled_by' => 'string',
        ];
 
        protected $fillable = [