Skip to content

Commit

Permalink
An attempt to fix Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Oct 15, 2024
1 parent 75cccbc commit d55f6b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Base/DataTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,12 @@ protected function populateDatabase(): void
'id' => 'pk',
'number' => 'integer NOT NULL',
'email' => 'string(255) NOT NULL',
'balance' => 'float NOT NULL DEFAULT 0.0',
'balance' => 'float DEFAULT 0.0 NOT NULL',
'born_at' => 'date',
],
)
->execute();


$fixtures = self::$fixtures;
foreach ($fixtures as $index => $fixture) {
$fixtures[$index]['balance'] = (string) $fixtures[$index]['balance'];
Expand Down

0 comments on commit d55f6b7

Please sign in to comment.