I noticed the ao_632f8b_captured_event table in my bamboo database and wanted to know what plugin or process is responsible for creating/populating it?
describe ao_632f8b_captured_event; +-------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+--------------+------+-----+---------+----------------+ | ID | int(11) | NO | PRI | NULL | auto_increment | | NAME | varchar(255) | YES | | NULL | | | TIME | datetime | YES | | NULL | | +-------+--------------+------+-----+---------+----------------+
That looks like a table from Web Fragment Finder (specifically the part that deals with internal events being triggered). (Or at least - the Captured_Event part is from an AO entity definition in it and the 632f8b matches the hash of the key). So 99.9% certain it's from that.
You can get all the ao_ (Active Objects) mappings using the following query:
select serialized_data from bandana where bandana_key = 'com.atlassian.activeobjects.admin.ActiveObjectsPluginToTablesMapping'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually AO doesn't store this information in DB anymore: please check https://bitbucket.org/activeobjects/ao-plugin/commits/9b3662164611b1d5abdc147604ef6e6418b2a4be for more details.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.