mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add Account Migrations
This commit is contained in:
parent
618b67271a
commit
a9220e4e01
2 changed files with 49 additions and 0 deletions
17
app/Models/ProfileAlias.php
Normal file
17
app/Models/ProfileAlias.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\Profile;
|
||||
|
||||
class ProfileAlias extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
public function profile()
|
||||
{
|
||||
return $this->belongsTo(Profile::class);
|
||||
}
|
||||
}
|
|
@ -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.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('profile_aliases', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('profile_id')->nullable()->index();
|
||||
$table->string('acct')->nullable();
|
||||
$table->string('uri')->nullable();
|
||||
$table->foreign('profile_id')->references('id')->on('profiles');
|
||||
$table->unique(['profile_id', 'acct'], 'profile_id_acct_unique');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('profile_aliases');
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue