123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- return array (
- 'tpl_id' =>
- array (
- 'name' => 'tpl_id',
- 'type' => 'int(10)',
- 'notnull' => false,
- 'default' => NULL,
- 'primary' => true,
- 'autoinc' => true,
- ),
- 'tpl_name' =>
- array (
- 'name' => 'tpl_name',
- 'type' => 'varchar(200)',
- 'notnull' => false,
- 'default' => '',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'tpl_title' =>
- array (
- 'name' => 'tpl_title',
- 'type' => 'varchar(200)',
- 'notnull' => false,
- 'default' => '',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'tpl_content' =>
- array (
- 'name' => 'tpl_content',
- 'type' => 'text',
- 'notnull' => false,
- 'default' => NULL,
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'send_scene' =>
- array (
- 'name' => 'send_scene',
- 'type' => 'tinyint(1)',
- 'notnull' => false,
- 'default' => '0',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'is_open' =>
- array (
- 'name' => 'is_open',
- 'type' => 'tinyint(1)',
- 'notnull' => false,
- 'default' => '0',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'lang' =>
- array (
- 'name' => 'lang',
- 'type' => 'varchar(50)',
- 'notnull' => false,
- 'default' => 'cn',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'add_time' =>
- array (
- 'name' => 'add_time',
- 'type' => 'int(11)',
- 'notnull' => false,
- 'default' => '0',
- 'primary' => false,
- 'autoinc' => false,
- ),
- 'update_time' =>
- array (
- 'name' => 'update_time',
- 'type' => 'int(11)',
- 'notnull' => false,
- 'default' => '0',
- 'primary' => false,
- 'autoinc' => false,
- ),
- );
|