Closed (fixed)
Project:
Flexinode
Version:
master
Component:
Update and installation script
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
31 Jan 2007 at 19:36 UTC
Updated:
16 Feb 2007 at 12:32 UTC
user warning: Table 'drupal.flexinode_type' doesn't exist query: SELECT * FROM flexinode_type in C:\servers\apache-2.2\drupal\includes\database.mysql.inc on line 121.
user warning: Table 'drupal.flexinode_type' doesn't exist query: SELECT * FROM flexinode_type in C:\servers\apache-2.2\drupal\includes\database.mysql.inc on line 121.
Comments
Comment #1
ccanning commentedThe mysql scripts are not compatible with 5.0.27. This script works
CREATE TABLE flexinode_type (
ctype_id int(10) unsigned NOT NULL default '0',
name varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',
help text NOT NULL,
PRIMARY KEY ctype_id (ctype_id)
) ENGINE=MyISAM
You can't have a default value for columns of type TEXT and it complains that TYPE is deprecated, but it still works.
Comment #2
Bèr Kessels commentedComment #3
Bèr Kessels commentedRepaired, and committed to HEAD on 4.7 branch.
Tested on mysql 4.1 and seems to work without problems there too, so no backwards compatibility issues.
Comment #4
(not verified) commented