Skip to content

Commit

Permalink
Update according changes in main PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Oct 9, 2024
1 parent ce46c37 commit 720c95c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/Provider/QueryBuilderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ public static function buildColumnDefinition(): array
$values['unsigned()'][0] = 'int UNSIGNED';
$values['integer(8)->scale(2)'][0] = 'int(8)';
$values['reference($reference)'][0] = 'int REFERENCES `ref_table` (`id`) ON DELETE CASCADE ON UPDATE CASCADE';
$values['reference($referenceWithSchema)'][0] = 'int REFERENCES `ref_schema`.`ref_table` (`id`) ON DELETE CASCADE ON UPDATE CASCADE';

return $values;
}
Expand Down

0 comments on commit 720c95c

Please sign in to comment.