mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
12 lines
187 B
PHP
12 lines
187 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBTable;
|
|
|
|
/**
|
|
* Generated column class.
|
|
*/
|
|
class GeneratedColumn extends Column
|
|
{
|
|
public $generated = 'always';
|
|
public $is_stored = false;
|
|
}
|