<?php

namespace Ulmus\Attribute;

enum IndexTypeEnum : string
{
    case Primary = 'primary';

    case Index = 'index';

    case Unique = 'unique';

    case Spatial = 'spatial';

    case Fulltext = 'fulltext';
}