app_platform.php 310 B

123456789101112131415
  1. <?php
  2. return [
  3. 'name' => '应用与平台关联表',
  4. 'struct' => [
  5. 'app_id' => [
  6. 'name' => '应用id',
  7. 'type' => 'int(11)',
  8. ],
  9. 'platform_id' => [
  10. 'name' => '平台id',
  11. 'type' => 'int(11)',
  12. ],
  13. ],
  14. ];