Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

COmanage Registry is tested against PostgreSQL and MySQL, but should work against any database . It may work against other databases supported by CakePHP, but no other databases are regularly tested.

Note
titleUse InnoDB Storage Engine With MySQL

If you are using MySQL, use the InnoDB storage engine, not MyISAM.

To set this as the default storage engine on a Unix-like system, add the following to /etc/my.cnf and restart mysql before setting up the database tables:

No Format
# Set default engine to InnoDB
default-storage-engine=InnoDB

(You can also set the storage engine on a per-session or per-table basis, see the MySQL documentation for details.)

...