string('guid')->unique()->nullable(); $table->string('domain')->nullable(); }); } /** * Reverse the migrations. */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn(['guid', 'domain']); }); } }