diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-11 16:52:46 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-11 16:52:46 +0100 |
commit | 41e702d8535d9f703ca7740ce0aa356e8f9797be (patch) | |
tree | 614415e36ed0597dbcbd4f558c7e068bf627c84f /include | |
parent | 19f83eaa34e95a25373437728c8ab3316a3f273c (diff) |
Prefix the special db_json columns with an @.
Diffstat (limited to 'include')
-rw-r--r-- | include/serialize.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/serialize.h b/include/serialize.h index 79315d7a9..f4276bebd 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -98,6 +98,8 @@ private: Serialize::Type *s_type; /* Iterator into serializable_items */ std::list<Serializable *>::iterator s_iter; + /** The time at which this object was first committed to the database. */ + time_t first_commit = 0; /* The hash of the last serialized form of this object committed to the database */ size_t last_commit = 0; /* The last time this object was committed to the database */ |