Transactional DDL rocks my world, but shouldn't be left in that file.

This commit is contained in:
Brenda Wallace 2009-11-26 20:21:47 +13:00
parent 93ecccb8fb
commit dd742a560d
1 changed files with 0 additions and 3 deletions

View File

@ -1,6 +1,4 @@
/* local and remote users have profiles */
BEGIN;
create sequence profile_seq;
create table profile (
id bigint default nextval('profile_seq') primary key /* comment 'unique identifier' */,
@ -583,4 +581,3 @@ create table login_token (
primary key (user_id)
);
ROLLBACK;