30 lines
866 B
PHP
30 lines
866 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->string('address')->nullable()->after('phone');
|
|
$table->date('birth_date')->nullable()->after('address');
|
|
$table->enum('gender', ['male', 'female'])->nullable()->after('birth_date');
|
|
$table->string('profile_picture')->nullable()->after('gender');
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->dropColumn([
|
|
'address',
|
|
'birth_date',
|
|
'gender',
|
|
'profile_picture'
|
|
]);
|
|
});
|
|
}
|
|
};
|