Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
Actually, that's not a typo. What's happening in update 6013 is I'm correcting a previous typo where I originally had named the column "auth_catagory" and then I corrected it to "auth_category"
$result[] = update_sql("ALTER TABLE {biblio_contributor_type} CHANGE COLUMN auth_catagory auth_category
INTEGER UNSIGNED NOT NULL DEFAULT 0,
DROP PRIMARY KEY,
ADD PRIMARY KEY USING BTREE(auth_category, biblio_type, auth_type)");
is renaming the column from auth_catagory to auth_category.
Oh, may be I was wrong.
I got error messages when upgrading D5->D6 and corrected the "misspelling".
Does this mean that the tables I changed by applying the patch above are now corrupted?
No, you tables should be fine since your patch essentially does nothing. You your case (upgrade from 5) that (incorrect) column name would have never existed since the that's a new table which would have been created correctly.
What this does point out is a flaw in the upgrade, I'll have to skip this step if upgrading from 5.x.
Comments
Comment #1
rjerome commentedActually, that's not a typo. What's happening in update 6013 is I'm correcting a previous typo where I originally had named the column "auth_catagory" and then I corrected it to "auth_category"
is renaming the column from auth_catagory to auth_category.
Ron.
Comment #2
schildi commentedOh, may be I was wrong.
I got error messages when upgrading D5->D6 and corrected the "misspelling".
Does this mean that the tables I changed by applying the patch above are now corrupted?
Comment #3
rjerome commentedNo, you tables should be fine since your patch essentially does nothing. You your case (upgrade from 5) that (incorrect) column name would have never existed since the that's a new table which would have been created correctly.
What this does point out is a flaw in the upgrade, I'll have to skip this step if upgrading from 5.x.
Ron.
Comment #4
schildi commentedthanks!