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