Skip to content

Commit

Permalink
Added WordPress Post Source
Browse files Browse the repository at this point in the history
DivineOmega authored Jul 28, 2017
1 parent 6f5d866 commit 788aecb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ Each UXDM migration requires a source object and at least one destination object
* CSV (Comma Seperated Values) Source & Destination
* Associative Array Source & Destination
* XML Source
* WordPress Post Source
* Debug Output Destination

Source and destination objects can be used in any combination. Data can be migrated from a CSV and inserted into a database, just as easily as data can be migrated from a database to a CSV.
@@ -114,4 +115,4 @@ $migrator->setSource($pdoSource)
->migrate();
```

This migration gets the data from the `email` field in the source, creates a new `email_hash` data item which contains an md5 of the email address, and then removes the original `email` data item. This new `email_hash` will then be migrated to the destination database along with the other fields, excluding the removed `email` field.
This migration gets the data from the `email` field in the source, creates a new `email_hash` data item which contains an md5 of the email address, and then removes the original `email` data item. This new `email_hash` will then be migrated to the destination database along with the other fields, excluding the removed `email` field.

0 comments on commit 788aecb

Please sign in to comment.