Fixed test break.

This commit is contained in:
Qiang Xue
2015-02-15 22:44:42 -05:00
parent 7b5cdf041d
commit dd15857eda
4 changed files with 39 additions and 0 deletions

View File

@ -123,6 +123,16 @@ CREATE TABLE "bool_values" (
default_false boolean not null default false
);
CREATE TABLE `animal` (
id serial primary key,
type varchar(255) not null
);
INSERT INTO "animal" (type) VALUES ('yiiunit\data\ar\Cat');
INSERT INTO "animal" (type) VALUES ('yiiunit\data\ar\Dog');
INSERT INTO "profile" (description) VALUES ('profile customer 1');
INSERT INTO "profile" (description) VALUES ('profile customer 3');