You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stagedversioned: The one we're all probably used to, where you have _Versions records, as well as a Draft and Live record for your DataObject.
Any time you have applied the Versioned::class extension to something, this was/is actually an alias for Versioned::class . '.stagedversioned'.
versioned: Which I didn't know about, but is where you have _Versions records, but only ever have a Live record for your DataObject (there is no draft).
When you apply the Versioned::class extension to something, you can explicitly state that you want Versioned::class . '.versioned' to get the "non staged" version of Versioned.
Current scenarios only cover stagedversioned.
The text was updated successfully, but these errors were encountered:
TIL that
Versioned
has two modes:stagedversioned
: The one we're all probably used to, where you have_Versions
records, as well as a Draft and Live record for yourDataObject
.Versioned::class
extension to something, this was/is actually an alias forVersioned::class . '.stagedversioned'
.versioned
: Which I didn't know about, but is where you have_Versions
records, but only ever have a Live record for yourDataObject
(there is no draft).Versioned::class
extension to something, you can explicitly state that you wantVersioned::class . '.versioned'
to get the "non staged" version ofVersioned
.Current scenarios only cover
stagedversioned
.The text was updated successfully, but these errors were encountered: