diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-11-26 20:21:47 +1300 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-11-26 20:21:47 +1300 |
commit | dd742a560d4754a5906ed6392e3943e058e41663 (patch) | |
tree | f57df086db2915da8072eebb4873f13f976c8002 /db/statusnet_pg.sql | |
parent | 93ecccb8fbac5e82c64fdace31efd47e1139bc06 (diff) |
Transactional DDL rocks my world, but shouldn't be left in that file.
Diffstat (limited to 'db/statusnet_pg.sql')
-rw-r--r-- | db/statusnet_pg.sql | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 39f66a1fa..81b329d1e 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -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; |