By leetamus on
I would have thought it was the actions module, but there aren't any references to it in actions.install.. I've done a site wide search in dreamweaver and came up with nothing...
That table is unreadable and has errors so I'd like to rebuild it, but I don't know what it's storing.
I've tried googling and found many references to the trigger module, but I don't have that installed, so i'm at a loss. I was unable to export my database with the table error so I ended up deleting it, but it obviously it did something so I need to get it rebuilt before my site goes live.
thanks for any insights!
Leetamus
Comments
i'd like the same
is it even in drupal6? is it a reminant from workflow in d5?
http://SocialNicheGuru.com
Delivering inSITE(TM), we empower you to deliver the right product and the right message to the right NICHE at the right time across all product, marketing, and sales channels.
create another table
http://drupal.org/node/305391#comment-1006464
CREATE TABLE IF NOT EXISTS `actions_assignments` (
`hook` varchar(32) NOT NULL default '',
`op` varchar(40) NOT NULL default '',
`aid` varchar(255) NOT NULL default '',
`weight` int(11) NOT NULL default '0',
PRIMARY KEY (`hook`,`op`,`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
http://SocialNicheGuru.com
Delivering inSITE(TM), we empower you to deliver the right product and the right message to the right NICHE at the right time across all product, marketing, and sales channels.
I think its possible that its
I think its possible that its not a module but something more at the core of the drupal code as this is a very fundamental aspect of the software, of course I don't know enough about Drupal to know this, is every single thing a module or are some things "sub module"?