Changes between Initial Version and Version 1 of Ticket #710, comment 1
- Timestamp:
- 04/01/14 13:18:46 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #710, comment 1
initial v1 15 15 }}} 16 16 17 And there are no matche d in the database:17 And there are no matches in the database when using the wp command line tool: 18 18 19 19 {{{ … … 36 36 }}} 37 37 38 This isn't seralized so it's easy to update on the "MySQL command line:38 This isn't seralized so it's easy to update on the !MySQL command line: 39 39 40 40 {{{ 41 41 sudo -i 42 42 mysql tc 43 mysql> 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 +-------+--------------+------+-----+---------+-------+ 43 50 mysql> update r0bh_wfConfig set val="samrossiter@transitionnetwork.org" where name="alertEmails"; 44 51 mysql> select * from r0bh_wfConfig where name="alertEmails";