瀏覽代碼

Add federation fields to profile migration

Daniel Supernault 7 年之前
父節點
當前提交
c3868cf7be
共有 1 個文件被更改,包括 13 次插入2 次删除
  1. 13 2
      database/migrations/2018_04_16_002611_create_profiles_table.php

+ 13 - 2
database/migrations/2018_04_16_002611_create_profiles_table.php

@@ -16,14 +16,25 @@ class CreateProfilesTable extends Migration
         Schema::create('profiles', function (Blueprint $table) {
             $table->increments('id');
             $table->unsignedInteger('user_id')->nullable();
-            $table->string('username')->nullable()->unique()->index();
+            $table->string('domain')->nullable();
+            $table->string('username')->nullable()->index();
             $table->string('name')->nullable();
             $table->string('bio', 150)->nullable();
             $table->string('location')->nullable();
             $table->string('website')->nullable();
-            $table->string('remote_url')->nullable();
             $table->text('keybase_proof')->nullable();
             $table->boolean('is_private')->default(false);
+            // PuSH/WebSub
+            $table->string('verify_token')->nullable();
+            $table->string('secret')->nullable();
+            // RSA Key Pair
+            $table->text('private_key')->nullable();
+            $table->text('public_key')->nullable();
+            // URLs
+            $table->string('remote_url')->nullable();
+            $table->string('salmon_url')->nullable();
+            $table->string('hub_url')->nullable();
+            $table->unique(['domain', 'username']);
             $table->timestamps();
         });
     }