Skip to content

Commit 8191725

Browse files
committed
Fix test fixtures
1 parent 99d9e55 commit 8191725

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/Fixture/DatabaseRolesFixture.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ class DatabaseRolesFixture extends TestFixture {
1616
*/
1717
public array $fields = [
1818
'id' => ['type' => 'integer'],
19-
'name' => ['type' => 'string', 'null' => false, 'length' => 64, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'],
20-
'description' => ['type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'],
21-
'alias' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 20, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'],
19+
'name' => ['type' => 'string', 'null' => false, 'length' => 64, 'comment' => '', 'charset' => 'utf8'],
20+
'description' => ['type' => 'string', 'null' => false, 'default' => null, 'comment' => '', 'charset' => 'utf8'],
21+
'alias' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 20, 'comment' => '', 'charset' => 'utf8'],
2222
'created' => ['type' => 'datetime', 'null' => true, 'default' => null, 'collate' => null, 'comment' => ''],
2323
'modified' => ['type' => 'datetime', 'null' => true, 'default' => null, 'collate' => null, 'comment' => ''],
2424
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],

tests/Fixture/EmptyRolesFixture.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EmptyRolesFixture extends TestFixture {
1616
*/
1717
public array $fields = [
1818
'id' => ['type' => 'integer'],
19-
'alias' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 20, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'],
19+
'alias' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 20, 'comment' => '', 'charset' => 'utf8'],
2020
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
2121
];
2222

tests/Fixture/UsersFixture.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class UsersFixture extends TestFixture {
1616
*/
1717
public array $fields = [
1818
'id' => ['type' => 'integer'],
19-
'username' => ['type' => 'string', 'null' => false, 'length' => 64, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'],
19+
'username' => ['type' => 'string', 'null' => false, 'length' => 64, 'comment' => '', 'charset' => 'utf8'],
2020
'role_id' => ['type' => 'integer', 'null' => false, 'default' => '0', 'length' => 11, 'collate' => null, 'comment' => ''],
2121
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
2222
];

0 commit comments

Comments
 (0)