-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert table_schema type to TableSchema object (#100)
* Convert table_schema type to TableSchema object * Remove unused use
- Loading branch information
Showing
18 changed files
with
556 additions
and
753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Slack\SQLFake; | ||
|
||
final class Column { | ||
public function __construct( | ||
public string $name, | ||
public DataType $type, | ||
public int $length, | ||
public bool $null, | ||
public string $hack_type, | ||
public ?bool $unsigned = null, | ||
public ?string $default = null, | ||
) {} | ||
} |
Oops, something went wrong.