The Install New Updates module on the admin dashboard lists one-time platform installers that still have pending steps on the site. Clicking the green Check For Updates button refreshes the list — an installer only appears when the site actually has something left to install, and it disappears from the list once its steps are complete.

What Update Expire Date for Posts Does

This installer corrects the storage type of a single database column so post group dates are stored consistently. It changes the group_date column on the users_portfolio_groups table to the TIMESTAMP type, nullable with a default of NULL.

This is a database structure change only. It converts how the date is stored; it does not delete or rewrite the group records themselves.

Why It Appears

The installer inspects the group_date column on users_portfolio_groups and checks its type. If the type is already timestamp, everything is fine and the installer does not appear. If it is any other type, the installer is offered so the column can be converted.

Why It Matters

Storing group_date as a proper TIMESTAMP keeps date values in the format the platform expects for post group dates, so date handling behaves consistently. Leaving the column on the older type does not break the current site, but it keeps the column out of step with the expected structure.

How to Run It

  1. From the admin dashboard, find the Install New Updates module and click Check For Updates.
  2. If the column type needs correcting, Update Expire Date for Posts appears in the list. Click Install.
  3. After it completes, click Check For Updates again to confirm the entry is gone.

After Running

Nothing changes visibly on the website. The group_date column is now stored as a TIMESTAMP, and the existing group records are preserved. There is nothing to reconfigure afterward.