text('access_key')->nullable(); $table->text('secret_key')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('storages', function (Blueprint $table) { $table->dropColumn('secret_key'); $table->dropColumn('access_key'); }); } }