Files
OMS/app/wap/dbschema/authorize.php
2025-12-28 23:13:25 +08:00

72 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
$db['authorize']=array (
'columns' =>
array (
'account_id' =>
array (
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'editable' => false,
),
'account_type' =>
array(
'type' => 'varchar(30)',
'required' => true,
'label' => '账户类型',
'editable' => false,
),
'uname' =>
array(
'type' => 'varchar(100)',
'required' => true,
'label' => '用户名',
'editable' => false,
'in_list' => false,
),
'source' =>
array(
'type' => 'varchar(30)',
'required' => false,
'label' => '来源',
'editable' => false,
'in_list' => false,
),
'code' =>
array(
'type' => 'varchar(32)',
'required' => true,
'label' => 'code',
'editable' => false,
'in_list' => false,
'default' => '',
),
'disabled' =>
array (
'type' => 'bool',
'default' => 'false',
'comment' => '无效',
'editable' => false,
'label' => '无效',
'in_list' => false,
),
'bind_time' =>
array (
'type' => 'time',
'label' => '绑定时间',
'editable' => false,
),
),
'index' =>
array (
),
'comment' => '第三方免登信息表',
'engine' => 'innodb',
'version' => '$Rev: 41996 $',
);