i have try to manually create table because i dont know how to make .install, but without success
module don't write the flickr username in the table ??
lets 'see an export of my mysql tables :
CREATE TABLE `phil2_flickrusers` (
`uid` int(11) NOT NULL,
`flickrusername` text NOT NULL,
`cachejpegs` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE `phil2_flickrphotos` (
`flickrphoto_id` int(11) NOT NULL,
`nid` int(11) NOT NULL,
`lastfetched` timestamp NOT NULL default CURRENT_TIMESTAMP,
PRIMARY KEY (`flickrphoto_id`),
UNIQUE KEY `flickrphoto_id` (`flickrphoto_id`),
UNIQUE KEY `nid` (`nid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
any idea ?
Comments
Comment #1
Shiny commentedThanks! Added to CVS head
Comment #2
Shiny commentedwhoops -- wrong issue.
i meant to update http://drupal.org/node/130846
Comment #3
Shiny commentedComment #4
Shiny commentedphildu : does the latest version work for you?
There are mysql table defs in the release now.
Comment #5
(not verified) commented