5 lines
213 B
SQL
5 lines
213 B
SQL
/*!40014 SET FOREIGN_KEY_CHECKS=0*/;
|
|
/*!40101 SET NAMES binary*/;
|
|
CREATE SEQUENCE `s` start with 1 minvalue 1 maxvalue 9223372036854775806 increment by 1 cache 1000 nocycle ENGINE=InnoDB;
|
|
SELECT SETVAL(`s`,1001);
|