Hi guys,
Line 711 (bottom of the file) of create/mysql/schema.sql reads:
notes lob DEFAULT '' NOT NULL,
...which generates an error when inserting the sql into the database. The line should be:
notes blob DEFAULT '' NOT NULL,
Straightforward I know, but there will probably be people following the install instructions who can't figure out why they are getting SQL errors!
If there is a better way to report these very minor bugs, then please let me know!
Regards,
John
Line 711 (bottom of the file) of create/mysql/schema.sql reads:
notes lob DEFAULT '' NOT NULL,
...which generates an error when inserting the sql into the database. The line should be:
notes blob DEFAULT '' NOT NULL,
Straightforward I know, but there will probably be people following the install instructions who can't figure out why they are getting SQL errors!
If there is a better way to report these very minor bugs, then please let me know!
Regards,
John
Comment