Dominik L. Borkowski wrote: > On Tuesday 12 December 2006 14:44, you wrote: > >> Let me know what you think.. I'm very open to suggestions. >> > > Looks great, and looks like our windows admins will find it very useful. I > was > just installing it, and noticed a small typo in the schema.sql, which causes > problems when creating one of the tables: > > create table pack_extras ( -- Extras = Depends, Conflicts, Provides > id int unsigned not null auto_increment primary key, > pack_id int unsigned not null default 0, -- Package ID this extra > applies > to > exttype_id int unsigned not null default 0, -- Extra Type > priority int unsigned not null default 0, -- Priority for multiple extras > of same type. > value int unsigned not null default 0, -- Package ID for the action of > this extra > ) TYPE=MyISAM; > > The typo is on line 56, there is a comma at the end of the declaration > of 'value'. Simple fix is just to remove that comma: > > " value int unsigned not null default 0 -- Package ID for the action of > this extra" > > thanks again for the great work. > > sincerely, > Thanks for catching that comma... That's what I get for tweaking my schema file and simultaneously modifying a live database.
New version up: 0.7.2 Only schema change in this release. If you know how to fix it on your own, no need to d/l. Michael J. Kidd ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ wpkg-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wpkg-users
