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

Shiny’s picture

Assigned: Unassigned » Shiny
Status: Active » Fixed

Thanks! Added to CVS head

Shiny’s picture

whoops -- wrong issue.
i meant to update http://drupal.org/node/130846

Shiny’s picture

Status: Fixed » Active
Shiny’s picture

Status: Active » Fixed

phildu : does the latest version work for you?
There are mysql table defs in the release now.

Anonymous’s picture

Status: Fixed » Closed (fixed)