htmlpages -> pages
Closed this issue · 4 comments
Portugao commented
Do you have tables as example?
bvdbos commented
attached is a sample pnhtmlpages.sql
CREATE TABLE IF NOT EXISTS pn_htmlpages
(
pn_pid
int(11) NOT NULL AUTO_INCREMENT,
pn_uid
int(11) NOT NULL DEFAULT '0',
pn_title
varchar(128) NOT NULL DEFAULT '',
pn_content
longtext,
pn_timest
timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
pn_printlink
tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (pn_pid
)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=141 ;
Portugao commented
Very nice, but I asked for tables to import.....
Portugao commented
Ok, thanks a lot. I will see, what I can do!