summaryrefslogtreecommitdiff
path: root/tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql')
-rw-r--r--tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql b/tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql
deleted file mode 100644
index 753b48ac..00000000
--- a/tests/unit/Data/SqlMap/fixtures/mysql5_setup.sql
+++ /dev/null
@@ -1,22 +0,0 @@
-CREATE DATABASE `prado_system_data_sqlmap`
- DEFAULT CHARACTER SET utf8
- COLLATE utf8_general_ci;
-
-GRANT ALL ON `prado_system_data_sqlmap`.*
- TO 'prado_unitest'@'localhost'
- IDENTIFIED BY 'prado_system_data_sqlmap_unitest';
-
-DROP TABLE IF EXISTS `dynamicparametertest1`;
-CREATE TABLE `dynamicparametertest1` (
- `testname` varchar(50) NOT NULL,
- `teststring` varchar(50) NOT NULL,
- `testinteger` int(11) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
-DROP TABLE IF EXISTS `dynamicparametertest2`;
-CREATE TABLE `dynamicparametertest2` (
- `testname` varchar(50) NOT NULL,
- `teststring` varchar(50) NOT NULL,
- `testinteger` int(11) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-