diff options
Diffstat (limited to 'project2/sql/unittests/pqschema.sql')
-rw-r--r-- | project2/sql/unittests/pqschema.sql | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/project2/sql/unittests/pqschema.sql b/project2/sql/unittests/pqschema.sql index b51a279..a097419 100644 --- a/project2/sql/unittests/pqschema.sql +++ b/project2/sql/unittests/pqschema.sql @@ -3,6 +3,5 @@ CREATE TABLE test( fl numeric(5,2), string text, dt timestamp without time zone, - tf boolean, ts interval); -INSERT INTO test VALUES(4, 123.45, 'some text', '2015-04-27 23:06:03', true, '1 day 14:13:12'); +INSERT INTO test VALUES(4, 123.45, 'some text', '2015-04-27 23:06:03', '1 day 14:13:12'); |