mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 17:57:38 +08:00
Fixed test break.
This commit is contained in:
@ -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');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user