timestamp('expires_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('metadata', function (Blueprint $table) { $table->removeColumn('expires_at'); }); } }