Index: openacs-4/packages/faq/sql/postgresql/faq-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/faq/sql/postgresql/faq-create.sql,v diff -u -r1.11 -r1.12 --- openacs-4/packages/faq/sql/postgresql/faq-create.sql 30 Jan 2019 12:13:53 -0000 1.11 +++ openacs-4/packages/faq/sql/postgresql/faq-create.sql 3 Sep 2024 15:37:38 -0000 1.12 @@ -71,8 +71,8 @@ constraint faq_q_sand_a_pk primary key, faq_id integer not null references faqs on delete cascade, - question varchar (4000) not null, - answer varchar (4000) not null, + question text not null, + answer text not null, -- determines the order of questions in a FAQ sort_key integer not null );