sample repository
TABLE SCRIPT
CREATE TABLE sample (
idx bigint(20) NOT NULL AUTO_INCREMENT,
content varchar(100) NOT NULL,
PRIMARY KEY (idx)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8
;
insert into sample(content) values ( 'test1');
insert into sample(content) values ( 'test2');
insert into sample(content) values ( 'test3');
insert into sample(content) values ( 'test4');