tables.conf.php 1.1 KB

1234567891011121314151617181920212223
  1. <?php
  2. define ( 'TABLE_PREFIX', 'zhask_' );
  3. define ( 't_user', TABLE_PREFIX . 'user' );
  4. define ( 't_category', TABLE_PREFIX . 'category' );
  5. define ( 't_question', TABLE_PREFIX . 'question' );
  6. define ( 't_credit', TABLE_PREFIX . 'credit' );
  7. define ( 't_usergroup', TABLE_PREFIX . 'usergroup' );
  8. define ( 't_answer', TABLE_PREFIX . 'answer' );
  9. define ( 't_message', TABLE_PREFIX . 'message' );
  10. define ( 't_session', TABLE_PREFIX . 'session' );
  11. define ( 't_userlog', TABLE_PREFIX . 'userlog' );
  12. define ( 't_crontadstatus', TABLE_PREFIX . 'crontad_status' );
  13. define ( 't_authissue', TABLE_PREFIX . 'auth_issue' );
  14. define ( 't_credit3log', TABLE_PREFIX . 'credit3_log' );
  15. define ( 't_vipquestion', TABLE_PREFIX . 'vip_question' );
  16. define ( 't_vipanswer', TABLE_PREFIX . 'vip_answer' );
  17. define ( 't_fund', TABLE_PREFIX . 'fund' );
  18. define ( 't_article', TABLE_PREFIX . 'article' );
  19. define ( 't_discuss', TABLE_PREFIX . 'discuss' );
  20. define ( 't_bankjorunal', TABLE_PREFIX . 'bank_jorunal' );
  21. define ( 't_emailconfig', TABLE_PREFIX . 'email_config' );
  22. define ( 't_examine', TABLE_PREFIX . 'examine' );
  23. ?>