Add Update Profile

This commit is contained in:
R
2022-09-20 09:31:26 +07:00
parent fc263e867a
commit 07bfbaefe0
7 changed files with 258 additions and 6 deletions

View File

@@ -0,0 +1,40 @@
<?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('users', function (Blueprint $table) {
$table->foreignId('person_id')->nullable()->after('id');
});
Schema::table('persons', function (Blueprint $table) {
$table->foreignId('owner_user_id')->nullable()->after('id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('person_id');
});
Schema::table('persons', function (Blueprint $table) {
$table->dropColumn('owner_user_id');
});
}
};