Index: openacs-4/packages/acs-templating/sql/oracle/captcha-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/sql/oracle/Attic/captcha-create.sql,v diff -u -N --- openacs-4/packages/acs-templating/sql/oracle/captcha-create.sql 17 Feb 2022 15:20:12 -0000 1.1.2.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,12 +0,0 @@ --- --- Captcha data-model --- - -create table template_widget_captchas ( - image_checksum varchar2(4000) primary key, - text varchar2(4000) not null, - expiration timestamp default (sysdate + interval '1' hour ) - constraint template_widget_captchas_nn not null -); - -create index template_widget_captchas_expiration_idx on template_widget_captchas(expiration);