Skip to content

Commit 5e0b754

Browse files
committed
Fix failing test
1 parent 6c55bf1 commit 5e0b754

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/specs/issue_fix/23_consider_openapi_extension_x_no_relation_also_in_other_pertinent_place/mysql/migrations_mysql_db/m200000_000000_create_table_payments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public function up()
99
{
1010
$this->createTable('{{%payments}}', [
1111
'id' => $this->primaryKey(),
12-
'currency' => $this->text()->null(),
12+
'currency' => $this->text()->notNull(),
1313
'samples' => 'json NOT NULL',
1414
]);
1515
}

tests/specs/issue_fix/23_consider_openapi_extension_x_no_relation_also_in_other_pertinent_place/mysql/migrations_mysql_db/m200000_000001_create_table_samples.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public function up()
99
{
1010
$this->createTable('{{%samples}}', [
1111
'id' => $this->primaryKey(),
12-
'message' => $this->text()->null(),
12+
'message' => $this->text()->notNull(),
1313
]);
1414
}
1515

0 commit comments

Comments
 (0)