GCMod

Database

Database schema and migration notes for gcm_storms.


Table: gcm_storm_presets

Stores saved storm presets for admin reuse.

Main columns:

  • id (INT, PK, auto increment)
  • name (VARCHAR(255))
  • stormName (VARCHAR(255))
  • maxplayer (INT)
  • playerlives (INT)
  • radius (INT)
  • kit (JSON)
  • reward (JSON)
  • entryCoords (JSON)
  • coords (JSON)
  • timetostart (INT)
  • speed (INT, default 2)
  • created_at, updated_at timestamps

Migration notes

  • Import database.sql once.
  • Table uses utf8mb4 and InnoDB by default.
  • Preset CRUD in server callbacks depends on this table being present.