timeflake
timeflake copied to clipboard
Timeflake is a 128-bit, roughly-ordered, URL-safe UUID.
I have a minor aversion to using projects that don't include dates in their changelog - I tend to follow the [keepachangelog](https://keepachangelog.com/en/1.0.0/) spec on my own projects, Curious if this...
UUIDField is build into Django and should therefore be preferred as it will likely increase compat with other third party libraries such as DRF. See previous issue #8 . However,...
See #10
Something similar to how https://github.com/ulid/spec#specification would be appreciated. Also would be interested in how the conversion between timeflake to UUID and back may work (e.g. what extra field needed for...
Lets say you have the following model and want to add history tracking to each FooModel object: ``` from simple_history.models import HistoricalRecords class FooModel(models.Model): id = TimeflakePrimaryKeyBinary() history = HistoricalRecords(...