Notifications
Clear all
Hi there,
I am building the tracker function into eFiction (actually, it's in for a while now).
Now I need to tell the installer how to import data from this mod, but I can't get my hands on it. :bye2:
All I need is a dump of the structure (e.g. phpMyAdmin -> Export -> Structure). :help:
Appreciated
Topic starter
Posted : 08/10/2016 1:36 am
I think this is what you want:
--
-- Table structure for table `fanfiction_tracker`
--
CREATE TABLE IF NOT EXISTS `fanfiction_tracker` (
`sid` int(11) NOT NULL DEFAULT '0',
`uid` int(11) NOT NULL DEFAULT '0',
`last_read` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
I uploaded the tracker archive here if you need to see it: http://www21.zippyshare.com/v/kyjvN6R5/file.html
http://www.FicSavers.Com
http://www.HPFanFicArchive.Com
http://www.FavoritesTracker.Org
Posted : 08/10/2016 3:02 am
Perfect, thanks
Topic starter
Posted : 08/10/2016 4:11 pm