41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('contacts', function (Blueprint $table) {
|
|
$table->string('prefix')->after('name')->nullable();
|
|
$table->string('first_name')->after('prefix')->nullable();
|
|
$table->string('middle_name')->after('first_name')->nullable();
|
|
$table->string('last_name')->after('middle_name')->nullable();
|
|
$table->text('address_line_2')->after('landmark')->nullable();
|
|
$table->string('zip_code')->after('address_line_2')->nullable();
|
|
$table->date('dob')->after('zip_code')->nullable();
|
|
});
|
|
|
|
DB::statement('ALTER TABLE contacts CHANGE landmark address_line_1 text;');
|
|
|
|
DB::statement('UPDATE contacts SET first_name=name;');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
}
|
|
};
|