pt-osc generate random table prefix after 10th try

This commit is contained in:
frank-cizmich
2016-02-26 21:03:18 -03:00
parent 805577fcc3
commit 3f90f9ea82
3 changed files with 62 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;
CREATE TABLE `test` (
`id` int(11) NOT NULL,
`name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;