|
@@ -0,0 +1,24 @@
|
|
|
|
|
+<?php
|
|
|
|
|
+
|
|
|
|
|
+use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
+use Illuminate\Database\Schema\Blueprint;
|
|
|
|
|
+use Illuminate\Support\Facades\Schema;
|
|
|
|
|
+
|
|
|
|
|
+return new class extends Migration
|
|
|
|
|
+{
|
|
|
|
|
+ public function up(): void
|
|
|
|
|
+ {
|
|
|
|
|
+ Schema::table('users', function (Blueprint $table) {
|
|
|
|
|
+ $table->string('phone', 20)->nullable()->after('email');
|
|
|
|
|
+ $table->string('position_label')->nullable()->after('phone');
|
|
|
|
|
+ $table->string('sector_label')->nullable()->after('position_label');
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function down(): void
|
|
|
|
|
+ {
|
|
|
|
|
+ Schema::table('users', function (Blueprint $table) {
|
|
|
|
|
+ $table->dropColumn(['phone', 'position_label', 'sector_label']);
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+};
|