Skip to content

Commit

Permalink
Added numeric data type
Browse files Browse the repository at this point in the history
  • Loading branch information
lulco committed Aug 29, 2023
1 parent 79eb27f commit 15823df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Replaced abandoned fzaninotto/faker with fakerphp/faker

#### Added
- Numeric data type
- Ignore and skip tables in automatic populator command
- Add test combination foreign key and self foreign key to test class table analyzer
- Support for PHP 8.0, PHP 8.1 and PHP 8.2
Expand Down
7 changes: 7 additions & 0 deletions src/DataType/NumericDataType.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

namespace Populator\DataType;

class NumericDataType extends DecimalDataType
{
}

0 comments on commit 15823df

Please sign in to comment.