openid.php 538 B

12345678910111213141516171819202122232425
  1. <?php
  2. return [
  3. 'name' => 'openid表',
  4. 'struct' => [
  5. 'account_id' => [
  6. 'type' => 'int(11)',
  7. 'name' => '账户',
  8. ],
  9. 'env' => [
  10. 'name' => '运行环境',
  11. 'type' => 'tinyint(1)',
  12. ],
  13. 'uid' => [
  14. 'type' => 'int(11)',
  15. 'name' => '用户ID',
  16. ],
  17. 'openid' => [
  18. 'type' => 'varchar(60)',
  19. 'name' => 'openid',
  20. ],
  21. ],
  22. ];