mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
43 lines
788 B
PHP
43 lines
788 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['concurrent']=array (
|
||
'columns' =>
|
||
array (
|
||
'id' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
'type' =>
|
||
array (
|
||
'type' => 'varchar(30)',
|
||
'editable' => false,
|
||
'pkey' => true,
|
||
'required' => true,
|
||
),
|
||
'current_time' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
),
|
||
),
|
||
|
||
'index' =>
|
||
array (
|
||
'ind_current_time' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'current_time',
|
||
),
|
||
),
|
||
),
|
||
'comment' => '防止重复记录表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 41996 $',
|
||
); |