Add the tables to test into the sql import files
This commit is contained in:
parent
9afa89cee8
commit
afff5dc157
@ -1,5 +1,30 @@
|
|||||||
-- sample data to test MySQL
|
-- sample data to test MySQL
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `create_join`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `create_join` (
|
||||||
|
`id` int(10) NOT NULL,
|
||||||
|
`key` text,
|
||||||
|
`val` text
|
||||||
|
);
|
||||||
|
ALTER TABLE `create_join`
|
||||||
|
ADD PRIMARY KEY (`id`);
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `create_test`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `create_test` (
|
||||||
|
`id` int(10) NOT NULL,
|
||||||
|
`key` text,
|
||||||
|
`val` text
|
||||||
|
);
|
||||||
|
ALTER TABLE `create_test`
|
||||||
|
ADD PRIMARY KEY (`id`);
|
||||||
|
|
||||||
-- TABLE TEST
|
-- TABLE TEST
|
||||||
DROP TABLE IF EXISTS TEST1;
|
DROP TABLE IF EXISTS TEST1;
|
||||||
CREATE TABLE TEST1 (
|
CREATE TABLE TEST1 (
|
||||||
|
@ -1,5 +1,18 @@
|
|||||||
-- sample data to test PostgreSQL INFORMATION_SCHEMA
|
-- sample data to test PostgreSQL INFORMATION_SCHEMA
|
||||||
|
|
||||||
|
-- Table create_join
|
||||||
|
CREATE TABLE create_join (
|
||||||
|
id integer NOT NULL,
|
||||||
|
key text,
|
||||||
|
val text
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE create_test (
|
||||||
|
id integer NOT NULL,
|
||||||
|
key text,
|
||||||
|
val text
|
||||||
|
);
|
||||||
|
|
||||||
-- TABLE TEST
|
-- TABLE TEST
|
||||||
CREATE TABLE IF NOT EXISTS TEST1 (
|
CREATE TABLE IF NOT EXISTS TEST1 (
|
||||||
TEST_NAME CHAR(30) NOT NULL,
|
TEST_NAME CHAR(30) NOT NULL,
|
||||||
|
Loading…
Reference in New Issue
Block a user