recycler.php 483 B

1234567891011121314151617181920212223
  1. <?php
  2. return array
  3. (
  4. 'name' => '回收站',
  5. 'struct' => array
  6. (
  7. 'table' => array
  8. (
  9. 'name' => '表名',
  10. 'type' => 'varchar(80)',
  11. ),
  12. 'table_id' => array
  13. (
  14. 'name' => '表id',
  15. 'type' => 'int(11)',
  16. ),
  17. 'content' => array
  18. (
  19. 'name' => '表内容',
  20. 'type' => 'text(255)',
  21. ),
  22. ),
  23. );