12345678910111213141516171819202122232425 |
- <?php
- return [
- 'name' => 'openid表',
- 'struct' => [
- 'account_id' => [
- 'type' => 'int(11)',
- 'name' => '账户',
- ],
- 'env' => [
- 'name' => '运行环境',
- 'type' => 'tinyint(1)',
- ],
- 'uid' => [
- 'type' => 'int(11)',
- 'name' => '用户ID',
- ],
- 'openid' => [
- 'type' => 'varchar(60)',
- 'name' => 'openid',
- ],
- ],
- ];
|