1
0

sqlite_update_tf-b4rt-85.to.tf-b4rt-9.sql 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. -- -----------------------------------------------------------------------------
  2. -- $Id: sqlite_update_tf-b4rt-85.to.tf-b4rt-9.sql 2607 2007-03-09 19:33:07Z b4rt $
  3. -- -----------------------------------------------------------------------------
  4. --
  5. -- SQLite-Update-File for 'Torrentflux-2.1-b4rt-9'.
  6. -- Updates a 'Torrentflux 2.1-b4rt-85' Database to a 'Torrentflux 2.1-b4rt-9'.
  7. --
  8. -- This Stuff is provided 'as-is'. In no way will the author be held
  9. -- liable for any damages to your soft- or hardware from this.
  10. -- -----------------------------------------------------------------------------
  11. --
  12. -- begin transaction
  13. --
  14. BEGIN TRANSACTION;
  15. --
  16. -- deletes
  17. --
  18. DELETE FROM tf_settings WHERE tf_key = 'enable_basicauth';
  19. DELETE FROM tf_settings WHERE tf_key = 'enable_rememberme';
  20. --
  21. -- inserts
  22. --
  23. INSERT INTO tf_settings VALUES ('Qmgr_path','/var/www/Qmgr');
  24. INSERT INTO tf_settings VALUES ('Qmgr_maxUserTorrents','2');
  25. INSERT INTO tf_settings VALUES ('Qmgr_maxTotalTorrents','5');
  26. INSERT INTO tf_settings VALUES ('Qmgr_perl','/usr/bin/perl');
  27. INSERT INTO tf_settings VALUES ('Qmgr_fluxcli','/var/www');
  28. INSERT INTO tf_settings VALUES ('Qmgr_host','localhost');
  29. INSERT INTO tf_settings VALUES ('Qmgr_port','2606');
  30. INSERT INTO tf_settings VALUES ('auth_type','0');
  31. INSERT INTO tf_settings VALUES ('index_page_connections','1');
  32. INSERT INTO tf_settings VALUES ('index_page_stats','1');
  33. INSERT INTO tf_settings VALUES ('index_page_sortorder','dd');
  34. INSERT INTO tf_settings VALUES ('index_page','b4rt');
  35. INSERT INTO tf_settings VALUES ('index_page_settings','1266');
  36. INSERT INTO tf_settings VALUES ('enable_move','0');
  37. INSERT INTO tf_settings VALUES ('enable_rename','1');
  38. INSERT INTO tf_settings VALUES ('move_paths','');
  39. INSERT INTO tf_settings VALUES ('bin_sockstat','/usr/bin/sockstat');
  40. --
  41. -- commit
  42. --
  43. COMMIT;