Open GoogleCodeExporter opened 9 years ago
I think you can create the "users" table instead of "user"
Original comment by sergiotr...@gmail.com
on 6 Sep 2011 at 11:08
[deleted comment]
You must use the following sql in PostgreSQL:
CREATE TABLE "user"
(
id bigint NOT NULL,
activation_date timestamp with time zone,
activation_key character varying(255),
email_address character varying(255) NOT NULL,
enabled boolean NOT NULL,
first_name character varying(255) NOT NULL,
last_name character varying(255) NOT NULL,
locked boolean NOT NULL,
password character varying(255) NOT NULL,
version integer NOT NULL,
CONSTRAINT pk_user PRIMARY KEY (id)
);
Original comment by sergiotr...@gmail.com
on 15 Feb 2012 at 9:28
Original issue reported on code.google.com by
jeffery....@gmail.com
on 18 Mar 2011 at 3:34