php spark make:migration * * NOTE: if you set an unsupported format, migration runner will not find * your migration files. * * Supported formats: * - YmdHis_ * - Y-m-d-His_ * - Y_m_d_His_ */ public string $timestampFormat = 'Y-m-d-His_'; /** * -------------------------------------------------------------------------- * Enable/Disable Migration Lock * -------------------------------------------------------------------------- * * Locking is disabled by default. * * When enabled, it will prevent multiple migration processes * from running at the same time by using a lock mechanism. * * This is useful in production environments to avoid conflicts * or race conditions during concurrent deployments. */ public bool $lock = false; }