/**
  * Sets the value of the user-version. It is a big-endian 32-bit signed integer stored in the
  * database header at offset 60.
  *
  * @param version
  * @see <a
  *     href="http://www.sqlite.org/pragma.html#pragma_schema_version">http://www.sqlite.org/pragma.html#pragma_schema_version</a>
  */
 public void setUserVersion(int version) {
   config.setUserVersion(version);
 }