소스 검색

Update Profile model to use snowflake ids

Daniel Supernault 6 년 전
부모
커밋
62dbf81a5b
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 10 2
      app/Profile.php

+ 10 - 2
app/Profile.php

@@ -4,12 +4,20 @@ namespace App;
 
 
 use Auth, Cache, Storage;
 use Auth, Cache, Storage;
 use App\Util\Lexer\PrettyNumber;
 use App\Util\Lexer\PrettyNumber;
+use Pixelfed\Snowflake\HasSnowflakePrimary;
 use Illuminate\Database\Eloquent\{Model, SoftDeletes};
 use Illuminate\Database\Eloquent\{Model, SoftDeletes};
 
 
 class Profile extends Model
 class Profile extends Model
 {
 {
-    use SoftDeletes;
-
+    use HasSnowflakePrimary, SoftDeletes;
+
+    /**
+     * Indicates if the IDs are auto-incrementing.
+     *
+     * @var bool
+     */
+    public $incrementing = false;
+    
     protected $dates = ['deleted_at'];
     protected $dates = ['deleted_at'];
     protected $hidden = ['private_key'];
     protected $hidden = ['private_key'];
     protected $visible = ['id', 'user_id', 'username', 'name'];
     protected $visible = ['id', 'user_id', 'username', 'name'];