Explorar el Código

添加creator_id

visuddhinanda hace 1 año
padre
commit
81648bfb29
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      api-v8/app/Models/Task.php

+ 1 - 1
api-v8/app/Models/Task.php

@@ -12,7 +12,7 @@ class Task extends Model
     protected $casts = [
         'id' => 'string'
     ];
-    protected $fillable = ['id','owner_id','project_id'];
+    protected $fillable = ['id', 'creator_id', 'owner_id', 'project_id'];
 
     protected $dates = [
         'created_at',