node-query/test/sql/pgsql.sql

14 lines
239 B
MySQL
Raw Normal View History

2014-10-23 10:53:16 -04:00
-- 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
2014-10-31 11:57:44 -04:00
);