All table are created and I have created a "template" site / content (so that new sites get "launched" easier) and then copied the pre-filled-with-sample-data tables into multiple instances of the same database with locations (ie: chicago_, sanfran_, boston_, etc). Everything seems to be running okay - except the editing / creation of nodes.
Nodes that already exist, if I try to edit (and turn "create new revision OFF") come back fine. Creating a new node, or editing a current node node and checking "create new revision" gives me the following error and the page remains unchanged (or uncreated).
Duplicate entry '5' for key 1 query: INSERT INTO chicago_node_revisions (nid, vid, title, body, teaser, log, timestamp, uid, format) VALUES (2, 5, 'this is a chicago page', 'without using the revisions', 'without using the revisions', '', 1155409857, 2, 1) in thesite/chicago/includes/database.mysql.inc on line 120.
The following is the setup of my tables and site reguarding what is shared:
$db_prefix = array(
'default' => 'chicago_',
'users' => 'shared_',
'sessions' => 'shared_',
'role' => 'shared_',
'profile_fields' => 'shared_',
'profile_values' => 'shared_',
'authmap' => 'shared_',
'sequences' => 'shared_',
);
I was told I might have "messed up" my sequences table (not sure how, all I did was rename it to "shared_sequences") but here is the content of it.