From 0febe3418b41d022fe345449df390d68de0b9f30 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 3 Mar 2017 11:16:46 +0100 Subject: [PATCH] (Breaking change) added notion of editor vs author. The table nodes and node_revisions have an extra "editor" field. Update the sql table with: ALTER TABLE nodes ADD editor INTEGER ; UPDATE nodes SET editor = author; ALTER TABLE node_revisions ADD editor INTEGER ; UPDATE node_revisions SET editor = author; --- modules/node/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 modules/node/README.md diff --git a/modules/node/README.md b/modules/node/README.md new file mode 100644 index 0000000..a636c7c --- /dev/null +++ b/modules/node/README.md @@ -0,0 +1 @@ +2017-03-03: (Breaking change) added notion of editor vs author. The table nodes and node_revisions have an extra "editor" field.