1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

Added FAQ-count to cron. Correct faq_question field type. Increased number of FAQs per page in admin area.

This commit is contained in:
Cameron
2015-04-15 15:35:42 -07:00
parent 01463a6759
commit edbc6dd700
3 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
CREATE TABLE faqs (
faq_id int(10) unsigned NOT NULL auto_increment,
faq_parent int(10) unsigned NOT NULL default '0',
faq_question mediumtext NOT NULL,
faq_question text NOT NULL,
faq_answer text NOT NULL,
faq_comment tinyint(1) unsigned NOT NULL default '0',
faq_datestamp int(10) unsigned NOT NULL default '0',