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

FAQ tags support

This commit is contained in:
SecretR
2013-03-15 17:15:29 +02:00
parent 5effcd6dc2
commit e8068a328c
6 changed files with 90 additions and 19 deletions

View File

@@ -6,6 +6,7 @@ CREATE TABLE faqs (
faq_comment tinyint(1) unsigned NOT NULL default '0',
faq_datestamp int(10) unsigned NOT NULL default '0',
faq_author int(10) unsigned default NULL,
faq_tags varchar(255) NOT NULL default '',
faq_order int(6) unsigned NOT NULL default '0',
PRIMARY KEY (faq_id)
) ENGINE=MyISAM;