Added auto-increment ID column

This commit is contained in:
2020-10-06 13:23:31 +01:00
parent 33e70adf88
commit cf7ee1cf73
5 changed files with 34 additions and 8 deletions

View File

@@ -27,4 +27,6 @@ TYPE_STRING <- bitwShiftL(1, 11)
#' @export
TYPE_BLOB <- bitwShiftL(1, 12)
#' @export
TYPE_TIMESTAMP <- bitwShiftL(1, 13)
TYPE_TIMESTAMP <- bitwShiftL(1, 13)
#' @export
TYPE_ID <- bitwShiftL(1, 14)