Gossamer Forum
Home : Products : Gossamer Links : Discussions :

question about ClickTrack table

Quote Reply
question about ClickTrack table
I noticed that the def for ClickTrack table has this
'pk' => [
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID'
],

Why they are so many duplicates? I thought they are duplicates, so I dropped them in mysqlman, how can I add them back if they are necessary?

Thanks.

Long
Quote Reply
Re: [long327] question about ClickTrack table In reply to
Yeah, mine is the same :( I think you may have found a bug Unsure

Code:
{
'ai' => '',
'cols' => {
'LinkID' => {
'form_size' => '10',
'form_type' => 'TEXT',
'not_null' => '1',
'pos' => '1',
'type' => 'INT'
},
'IP' => {
'form_size' => '20',
'form_type' => 'TEXT',
'not_null' => '1',
'pos' => '2',
'size' => '25',
'type' => 'CHAR'
},
'ClickType' => {
'form_type' => 'SELECT',
'not_null' => '1',
'pos' => '3',
'type' => 'ENUM',
'values' => [
'Rate',
'Hits',
'Review'
]
},
'ReviewID' => {
'default' => '0',
'form_size' => '10',
'form_type' => 'TEXT',
'not_null' => '1',
'pos' => '4',
'type' => 'INT'
},
'Created' => {
'form_size' => '20',
'form_type' => 'DATE',
'not_null' => '1',
'pos' => '5',
'type' => 'TIMESTAMP'
}
},
'fk' => {},
'fk_tables' => [],
'index' => {
'cndx' => [
'Created'
]
},
'pk' => [
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID',
'LinkID',
'IP',
'ClickType',
'ReviewID'

],
'subclass' => {},
'unique' => {}
};

Cheers

Andy (mod)
andy@ultranerds.co.uk


IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Quote Reply
Re: [Andy] question about ClickTrack table In reply to
Can someone take a look into this bug?