id('team_id'); $table->integer('branches_id')->nullable(); $table->string('title', 255)->nullable(); $table->string('alias', 255)->nullable(); $table->string('photo', 255)->nullable(); $table->string('thumb', 255)->nullable(); $table->string('designation', 255)->nullable(); $table->string('role', 255)->nullable(); $table->text('description')->nullable(); $table->integer('display_order')->nullable(); $table->integer('status')->nullable(); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('teams'); } };