Changes between Initial Version and Version 1 of Ticket #710, comment 1


Ignore:
Timestamp:
04/01/14 13:18:46 (3 years ago)
Author:
chris
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #710, comment 1

    initial v1  
    1515}}} 
    1616 
    17 And there are no matched in the database: 
     17And there are no matches in the database when using the wp command line tool: 
    1818 
    1919{{{ 
     
    3636}}} 
    3737 
    38 This isn't seralized so it's easy to update on the "MySQL command line: 
     38This isn't seralized so it's easy to update on the !MySQL command line: 
    3939 
    4040{{{ 
    4141sudo -i 
    4242mysql tc 
     43mysql> describe r0bh_wfConfig; 
     44+-------+--------------+------+-----+---------+-------+ 
     45| Field | Type         | Null | Key | Default | Extra | 
     46+-------+--------------+------+-----+---------+-------+ 
     47| name  | varchar(100) | NO   | PRI | NULL    |       | 
     48| val   | longblob     | YES  |     | NULL    |       | 
     49+-------+--------------+------+-----+---------+-------+ 
    4350mysql> update r0bh_wfConfig set val="samrossiter@transitionnetwork.org" where name="alertEmails"; 
    4451mysql> select * from r0bh_wfConfig where name="alertEmails";