Add federation fields to profile migration

pull/9/head
Daniel Supernault 2018-04-20 20:43:41 -06:00
rodzic b7537e7b06
commit c3868cf7be
1 zmienionych plików z 13 dodań i 2 usunięć

Wyświetl plik

@ -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();
});
}