Skip to content

Commit

Permalink
Remove array and object column types
Browse files Browse the repository at this point in the history
  • Loading branch information
morozov committed Oct 17, 2022
1 parent 5b40847 commit 763b4ad
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions src/Types/Types.php
Expand Up @@ -9,9 +9,6 @@
*/
final class Types
{
/** @deprecated Use {@link Types::JSON} instead. */
public const ARRAY = 'array';

public const ASCII_STRING = 'ascii_string';
public const BIGINT = 'bigint';
public const BINARY = 'binary';
Expand All @@ -29,16 +26,12 @@ final class Types
public const GUID = 'guid';
public const INTEGER = 'integer';
public const JSON = 'json';

/** @deprecated Use {@link Types::JSON} instead. */
public const OBJECT = 'object';

public const SIMPLE_ARRAY = 'simple_array';
public const SMALLINT = 'smallint';
public const STRING = 'string';
public const TEXT = 'text';
public const TIME_MUTABLE = 'time';
public const TIME_IMMUTABLE = 'time_immutable';
public const SIMPLE_ARRAY = 'simple_array';
public const SMALLINT = 'smallint';
public const STRING = 'string';
public const TEXT = 'text';
public const TIME_MUTABLE = 'time';
public const TIME_IMMUTABLE = 'time_immutable';

/** @codeCoverageIgnore */
private function __construct()
Expand Down

0 comments on commit 763b4ad

Please sign in to comment.