(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;
This commit is contained in:
2017-03-03 11:16:46 +01:00
parent 6cb6dd1609
commit 0febe3418b

1
modules/node/README.md Normal file
View File

@@ -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.