1
0

sqlite_update_tf-b4rt-9.to.tf-b4rt-91.sql 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. -- -----------------------------------------------------------------------------
  2. -- $Id: sqlite_update_tf-b4rt-9.to.tf-b4rt-91.sql 2607 2007-03-09 19:33:07Z b4rt $
  3. -- -----------------------------------------------------------------------------
  4. --
  5. -- SQLite-Update-File for 'Torrentflux-2.1-b4rt-91'.
  6. -- Updates a 'Torrentflux 2.1-b4rt-9' Database to a 'Torrentflux 2.1-b4rt-91'.
  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. -- updates
  17. --
  18. UPDATE tf_settings SET tf_value = '--upnp_nat_access 0' WHERE tf_key = 'btclient_tornado_options';
  19. UPDATE tf_settings SET tf_value = '' WHERE tf_key = 'cmd_options';
  20. --
  21. -- inserts
  22. --
  23. INSERT INTO tf_settings VALUES ('nice_adjust','0');
  24. INSERT INTO tf_settings VALUES ('xfer_realtime','1');
  25. INSERT INTO tf_settings VALUES ('skiphashcheck','0');
  26. INSERT INTO tf_settings VALUES ('enable_umask','0');
  27. --
  28. -- commit
  29. --
  30. COMMIT;