How we create table in Riak TS for auto_increment id such as in mysql we create:::as example---
create table Department(id int auto_increment not null,departmentName varchar(9));
is there any way to create table with AUTO_INCREMENT
CAN ANYONE TELL ME ?