mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
20 lines
421 B
PHP
20 lines
421 B
PHP
<?php
|
|
|
|
namespace base\common\scheme\attribute;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
class Table
|
|
{
|
|
public function __construct(
|
|
public string $name = '',
|
|
public string $comment = '',
|
|
public string $engine = 'InnoDB',
|
|
public string $charset = 'utf8mb4',
|
|
public string $collation = 'utf8mb4_general_ci',
|
|
public ?string $connection = null
|
|
) {
|
|
}
|
|
}
|