mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
19 lines
388 B
PHP
19 lines
388 B
PHP
<?php
|
|
namespace app\common;
|
|
|
|
use think\migration\db\Column;
|
|
|
|
class ColumnFormat
|
|
{
|
|
public static function timestamp($name){
|
|
return Column::make($name,'integer')
|
|
->setLimit(10)
|
|
->setSigned(false);
|
|
}
|
|
public static function loadDeleteTime(){
|
|
return Column::make('delete_time','integer')
|
|
->setLimit(10)
|
|
->setSigned(false);
|
|
}
|
|
}
|