Hello,
I'm running Drupal 4.7, and recently corrupted the database through a (failed) upgrade to 5.2. So I've decided to go back to Drupal 4.7 for the moment.
Unfortunately, when I try to restore the backup I took before I tried to upgrade, I get the following error:
ERROR 1064 at line 2: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'aid` int(10) NOT NULL auto_increment,
`mask` varchar(255) NOT
The start of my SQL dump is as follows:
-- phpMyAdmin SQL Dump
-- version 2.6.0-pl3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 16, 2007 at 08:31 PM
-- Server version: 4.0.18
-- PHP Version: 4.3.4
--
-- Database: `ganymede`
--
-- --------------------------------------------------------
--
-- Table structure for table `access`
--
CREATE TABLE `access` (
`aid` int(10) NOT NULL auto_increment,
`mask` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`status` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`aid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
--
-- Dumping data for table `access`
--
-- --------------------------------------------------------
--
-- Table structure for table `accesslog`
--
CREATE TABLE `accesslog` (