Is it possible to migrate into the statuses field? http://drupal.org/project/statuses
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | statuses-migrate_integration-1357872-3.patch | 4.57 KB | elaman |
Is it possible to migrate into the statuses field? http://drupal.org/project/statuses
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | statuses-migrate_integration-1357872-3.patch | 4.57 KB | elaman |
Comments
Comment #1
mikeryanMigration support for a contrib module would best go into that module.
Comment #2
icecreamyou commentedWe're not adding new features in the 1.x branch but will revisit this for 2.x.
I'm not sure it's worthwhile using the Migrate module for Statuses though. The only documentation I see for the Migrate module is the example module included in the package, and it includes queries that explicitly grab data from the old tables. If that's all you're doing, you can just save stuff directly to the {statuses} or {statuses_comments} tables with an
INSERT INTO ... SELECT FROMquery as most sites won't be doing much else when a status is saved. Anything more complicated than that probably requires custom code for each site in order to match up e.g. recipient IDs, attachments, or whatever.Comment #3
elamanI've been migrating Drupal 6 website to the Drupal 7. Even if this won't be applied to the module, hope this will help someone.
Migration example from Facebook Statuses 6.x-2.x & FB Micropublisher 6.x-1.x: