From f611b361ad20fcbbd0040fe225e20b30a583b958 Mon Sep 17 00:00:00 2001 From: skeeter Date: Tue, 26 Sep 2000 01:27:51 +0000 Subject: [PATCH] touch-ups for jengo --- doc/create_tables.orasql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/create_tables.orasql b/doc/create_tables.orasql index ef64296c75..1fa879b99c 100755 --- a/doc/create_tables.orasql +++ b/doc/create_tables.orasql @@ -86,12 +86,12 @@ create trigger accounts_bri before insert on accounts for each row begin - select accounts_seq.nextval into :new.con from dual; + select accounts_seq.nextval into :new.account_id from dual; end; / -insert into accounts (account_ld,account_pwd,account_firstname,account_lastname,account_permissions,account_groups, -status) values ('demo','81dc9bdb52d04dc20036dbd8313ed055','Demo','Account',':admin:email:todo:addressbook:calendar:',',1,','A'); +insert into accounts (account_lid,account_pwd,account_firstname,account_lastname,account_permissions,account_groups, +account_status) values ('demo','81dc9bdb52d04dc20036dbd8313ed055','Demo','Account',':admin:email:todo:addressbook:calendar:',',1,','A'); ------------ -- GROUPS --