string('auth_url')->nullable(); $table->string('tenant_name')->nullable(); $table->string('username')->nullable(); $table->string('password')->nullable(); $table->string('service_name')->nullable(); $table->string('service_region')->nullable(); $table->string('container_name')->nullable(); $table->string('location')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('storages', function (Blueprint $table) { $table->string('location')->change(); $table->dropColumn('container_name'); $table->dropColumn('service_region'); $table->dropColumn('service_name'); $table->dropColumn('password'); $table->dropColumn('username'); $table->dropColumn('tenant_name'); $table->dropColumn('auth_url'); }); } }