github.com/bingoohuang/gg@v0.0.0-20240325092523-45da7dee9335/pkg/gokv/sqlkv/README.md (about) 1 ```sql 2 create table kv 3 ( 4 k varchar(100) not null primary key, 5 v text, 6 state tinyint not null default 1, 7 updated datetime, 8 created datetime not null 9 ) 10 ```