We're storing our schema in git, and
# spicedb
d
We're storing our schema in git, and want to be able to know what version of the schema is in use at any point of time. Is there a way to store metadata about the schema that can be read later on? So far the best solution I have is to add it as a comment, then read the schema back out and parse the comment, but that feels hacky. Suggestions?
I also thought about adding a relationship with the schema version, but that might get out of sync. I also thought about ways to have a caveat that returns the version, but I don't think we can read out the attributes.
j
Comment is basically it
d
Got it, thanks Joey