mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-22 11:54:54 +00:00
9 lines
238 B
SQL
9 lines
238 B
SQL
CREATE SCHEMA IF NOT EXISTS test;
|
|
USE test;
|
|
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE `test`.`t1` (
|
|
`ID` int(11) NOT NULL,
|
|
`Column2` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`ID`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|