Patch forthcoming.

CommentFileSizeAuthor
#5 895014_4.patch1.78 KBlinclark
#3 895014.patch1.24 KBcatch
#1 895014.patch1.24 KBcatch

Comments

catch’s picture

Status: Active » Needs review
StatusFileSize
new1.24 KB

These seems to be it, only very lightly tested.

damien tournoud’s picture

That last one needs to change:

+  db_update('node_type')
+    ->fields(array('base' => 'node_content'))
+    ->condition('base', 'node')
+    ->execute();

That needs to be:

+  db_update('node_type')
+    ->fields(array('module' => 'node'))
+    ->condition('base', 'node_content')
+    ->execute();

Because base has already been converted at this point.

catch’s picture

StatusFileSize
new1.24 KB

Thanks Damien, updated.

Everett Zufelt’s picture

I patched head2head with this patch and ran the update today. It got rid of the failing query where node_type did not have a 'disabled' column.

Thanks

Anonymous’s picture

StatusFileSize
new1.78 KB

This worked for me. My alpha2alpha upgrade from alpha6 to beta1 was failing on update #7705 until I used this patch.

This patch should probably patch alpha2alpha as well. I am attaching the rerolled patch that includes the hack I used—I don't think this is the correct way, but it worked for me.

JacobSingh’s picture

Status: Needs review » Reviewed & tested by the community

Looks good to me.

JacobSingh’s picture

Status: Reviewed & tested by the community » Needs review

How should we add this?

alpha2alpha is kinda dead now. Beta2beta should be in core :) But this one is kinda on the fence. I guess I'll just add an "alpha8to9" which is actually the beta1?

rfay’s picture

Sadly, it never got added :-(

Silly me, going back and finding an alpha6 site that I had neglected and "someday" had to upgrade.

David_Rothstein’s picture

Issue summary: View changes
Status: Needs review » Closed (won't fix)

Closing this since no one is likely to need Drupal 7 HEAD to HEAD upgrade path patches anymore, and to clear out the queue for possible Drupal 8 usage (#2455949: [policy, no patch] Re-activate the head2head project and use it for beta2beta upgrades in the short-term).