mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
38 lines
715 B
PHP
38 lines
715 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['sync_task']=array (
|
||
'columns' =>
|
||
array (
|
||
'sync_task_id' =>
|
||
array (
|
||
'type' => 'number',
|
||
'extra' => 'auto_increment',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
'params' =>
|
||
array (
|
||
'type' => 'text',
|
||
'editable' => false,
|
||
),
|
||
'action' =>
|
||
array (
|
||
'type' => 'varchar(50)',
|
||
'editable' => false,
|
||
),
|
||
'retry' =>
|
||
array (
|
||
'type' => 'number',
|
||
'editable' => false,
|
||
),
|
||
),
|
||
|
||
'comment' => '同步任务',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |