integer('id_escola')->nullable()->after('created_at')->change(); $table->string('profile')->nullable()->after('id_escola')->change(); $table->string('cpf')->nullable()->after(column: 'profile')->change(); $table->json('endereco')->nullable()->after('cpf')->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { // }); } };