mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-06 23:05:36 +08:00
42 lines
904 B
PHP
42 lines
904 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['print_tmpl_diy']=array (
|
||
'columns' =>
|
||
array (
|
||
'tmpl_name' => array (
|
||
'type' => 'varchar(50)',
|
||
'pkey' => true,
|
||
'required' => true,
|
||
),
|
||
'app' => array (
|
||
'type' => 'varchar(20)',
|
||
'required' => true,
|
||
'default' => 'ome',
|
||
'editable' => false,
|
||
'pkey' => true,
|
||
),
|
||
'content' => array(
|
||
'type'=>'longtext',
|
||
'label' =>app::get('ome')->_('内容'),
|
||
'default' => 0,
|
||
),
|
||
'edittime' => array (
|
||
'type' => 'int(10) ',
|
||
'required' => true,
|
||
),
|
||
'active' => array(
|
||
'type'=>"enum('true', 'false')",
|
||
'default' => 'true',
|
||
),
|
||
|
||
),
|
||
'comment' => app::get('ome')->_('信息表'),
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev$',
|
||
);
|