Ticket Details
No schema is created for MySQL unit tests
BUG Ticket (closed)
Seems the unit tests will invariably fail, from lack of schema information. I believe it's missing a create table statement for the companies table.
Seems the unit tests will invariably fail, from lack of schema information. I believe it's missing a create table statement for the companies table.
adding to this one, I sought to create some sort of table that works manually to see if the tests succeed: {{{ create table companies (id int(11) not null auto_increment, name varchar(255), active int(1), created datetime, primary key (id) ); }}} this results in a fatal error: Fatal error: Class name must be a valid object or a string in /Users/denis/Sites/lithium/libraries/lithium/data/source/Database.php on line 613 (its value is null)