Ticket #7 (closed defect: fixed)
Fails to create tabledefs table
| Reported by: | Anonymous | Owned by: | brieb |
|---|---|---|---|
| Priority: | major | Milestone: | 0.62 |
| Component: | phpbms | Version: | 0.61 |
| Keywords: | Cc: |
Description
Fails to create tabledefs table
When installing on MySQL version 4.1.13 the tabledefs table is not created.
the problem is in the createtables.sql file.
CREATE TABLE tabledefs ( <snip> id int(11) NOT NULL auto_increment default '1000', <snip> ) TYPE=MyISAM;
should be...
CREATE TABLE tabledefs ( <snip> id int(11) NOT NULL auto_increment, <snip> ) TYPE=MyISAM;
you can only set a default value of null to an auto_increment field.
Change History
Note: See
TracTickets for help on using
tickets.