Update Schedules

This commit is contained in:
R
2022-09-27 10:03:11 +07:00
parent 876e521347
commit 388f7b2a9b
9 changed files with 843 additions and 2 deletions

View File

@@ -0,0 +1,48 @@
<?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('persons', function (Blueprint $table) {
$table->foreignId('domicile_address_id')->nullable()->after('main_address_id');
$table->string('blood_type', 2)->nullable()->after('birth_date');
$table->string('religion')->nullable()->after('birth_date');
$table->string('last_education')->nullable()->after('birth_date');
$table->string('current_employment')->nullable()->after('birth_date');
$table->string('citizenship')->nullable()->after('birth_date');
$table->text('birth_place')->nullable()->after('birth_date');
$table->string('email')->nullable()->after('name_suffix');
$table->string('phone')->nullable()->after('name_suffix');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('persons', function (Blueprint $table) {
$table->dropColumn('domicile_address_id');
$table->dropColumn('blood_type');
$table->dropColumn('religion');
$table->dropColumn('last_education');
$table->dropColumn('current_employment');
$table->dropColumn('citizenship');
$table->dropColumn('birth_place');
$table->dropColumn('email');
$table->dropColumn('phone');
});
}
};