packages/sql-fixture/src/TypeMapper/IntegerWidth.php

1<?php
2
3declare(strict_types=1);
4
5namespace SqlFixture\TypeMapper;
6
7/**
8 * Integer storage widths represented by the supported SQL dialects.
9 *
10 * @visibility root
11 */
12enum IntegerWidth
13{
14    case Bits8;
15    case Bits16;
16    case Bits24;
17    case Bits32;
18    case Bits64;
19}
20