mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add migration
This commit is contained in:
parent
7ef383d1f6
commit
fa43ec2333
2 changed files with 32 additions and 3 deletions
|
@ -23,14 +23,11 @@ class ProfileTransformer extends Fractal\TransformerAbstract
|
||||||
'followers' => $profile->permalink('/followers'),
|
'followers' => $profile->permalink('/followers'),
|
||||||
'inbox' => $profile->permalink('/inbox'),
|
'inbox' => $profile->permalink('/inbox'),
|
||||||
'outbox' => $profile->permalink('/outbox'),
|
'outbox' => $profile->permalink('/outbox'),
|
||||||
//'featured' => $profile->permalink('/collections/featured'),
|
|
||||||
'preferredUsername' => $profile->username,
|
'preferredUsername' => $profile->username,
|
||||||
'name' => $profile->name,
|
'name' => $profile->name,
|
||||||
'summary' => $profile->bio,
|
'summary' => $profile->bio,
|
||||||
'url' => $profile->url(),
|
'url' => $profile->url(),
|
||||||
'manuallyApprovesFollowers' => (bool) $profile->is_private,
|
'manuallyApprovesFollowers' => (bool) $profile->is_private,
|
||||||
// 'follower_count' => $profile->followers()->count(),
|
|
||||||
// 'following_count' => $profile->following()->count(),
|
|
||||||
'publicKey' => [
|
'publicKey' => [
|
||||||
'id' => $profile->permalink().'#main-key',
|
'id' => $profile->permalink().'#main-key',
|
||||||
'owner' => $profile->permalink(),
|
'owner' => $profile->permalink(),
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('instances', function (Blueprint $table) {
|
||||||
|
$table->timestamp('actors_last_synced_at')->nullable();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('instances', function (Blueprint $table) {
|
||||||
|
$table->dropColumn('actors_last_synced_at');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue