tests/tests.sql
author Radek Brich <radek.brich@devl.cz>
Sat, 29 Sep 2012 12:08:47 +0200
changeset 48 b82c7c2fb5af
parent 21 26209e9984b2
permissions -rw-r--r--
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.

CREATE TABLE test
(
  id serial NOT NULL,
  name varchar,
  PRIMARY KEY (id)
);