summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/statusnet_pg.sql3
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;