sql/tests.sql
author Radek Brich <brich.radek@ifortuna.cz>
Mon, 14 Apr 2014 22:28:12 +0200
changeset 96 acf63df539b7
parent 75 39f777341db4
permissions -rw-r--r--
Update tablecopy tool: Add --disable-triggers option.

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

GRANT ALL ON TABLE test TO test;