21 lines
281 B
PHP
21 lines
281 B
PHP
<?php
|
|
|
|
namespace Nest\Database\Migrations\Diff;
|
|
|
|
/**
|
|
* Table column index definition.
|
|
*/
|
|
class TableColumnIndex
|
|
{
|
|
/**
|
|
* Unique key index.
|
|
* @var bool
|
|
*/
|
|
public bool $unique = false;
|
|
|
|
/**
|
|
* Custom index method (raw SQL!).
|
|
* @var string
|
|
*/
|
|
public string $method;
|
|
}
|