Skip to content

Commit 2a36d5d

Browse files
committed
Fix test
1 parent 73cfcc4 commit 2a36d5d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/specs/issue_fix/20_consider_openapi_spec_examples_in_faker_code_generation/mysql/migrations_mysql_db/m200000_000001_create_table_pets.php

+15-15
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ public function up()
1111
'id' => $this->primaryKey(),
1212
'name' => $this->text()->notNull(),
1313
'age' => $this->integer()->null()->defaultValue(null),
14-
'tags' => $this->text()->null(),
15-
'tags_arbit' => $this->text()->null(),
16-
'number_arr' => $this->text()->null(),
17-
'number_arr_min_uniq' => $this->text()->null(),
18-
'int_arr' => $this->text()->null(),
19-
'int_arr_min_uniq' => $this->text()->null(),
20-
'bool_arr' => $this->text()->null(),
21-
'arr_arr_int' => $this->text()->null(),
22-
'arr_arr_str' => $this->text()->null(),
23-
'arr_arr_arr_str' => $this->text()->null(),
24-
'arr_of_obj' => $this->text()->null(),
25-
'user_ref_obj_arr' => $this->string()->null()->defaultValue(null),
26-
'one_of_arr' => $this->text()->null(),
27-
'one_of_arr_complex' => $this->text()->null(),
28-
'one_of_from_multi_ref_arr' => $this->text()->null(),
14+
'tags' => 'json NOT NULL',
15+
'tags_arbit' => 'json NOT NULL',
16+
'number_arr' => 'json NOT NULL',
17+
'number_arr_min_uniq' => 'json NOT NULL',
18+
'int_arr' => 'json NOT NULL',
19+
'int_arr_min_uniq' => 'json NOT NULL',
20+
'bool_arr' => 'json NOT NULL',
21+
'arr_arr_int' => 'json NOT NULL',
22+
'arr_arr_str' => 'json NOT NULL',
23+
'arr_arr_arr_str' => 'json NOT NULL',
24+
'arr_of_obj' => 'json NOT NULL',
25+
'user_ref_obj_arr' => 'json NOT NULL',
26+
'one_of_arr' => 'json NOT NULL',
27+
'one_of_arr_complex' => 'json NOT NULL',
28+
'one_of_from_multi_ref_arr' => 'json NOT NULL',
2929
]);
3030
}
3131

0 commit comments

Comments
 (0)