Issue #2281591 by benjy, Ryan Weal, vendion: Author information does not migrate over.

8.0.x
webchick 2014-09-22 21:30:56 -07:00
parent 8f4a89d73c
commit bf7e5e2541
2 changed files with 9 additions and 1 deletions

View File

@ -303,6 +303,12 @@ class Drupal6Node extends Drupal6DumpBase {
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'description' => 'The author of the node.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'field_test_three_value' => array(
'description' => 'Test field column.',
'type' => 'numeric',
@ -324,12 +330,14 @@ class Drupal6Node extends Drupal6DumpBase {
array(
'nid',
'vid',
'uid',
'field_test_three_value',
'field_test_integer_selectlist_value',
))
->values(array(
'nid' => 1,
'vid' => 1,
'uid' => 1,
'field_test_three_value' => '42.42',
'field_test_integer_selectlist_value' => '3412',
))

View File

@ -29,7 +29,7 @@ class Drupal6NodeRevision extends Drupal6DumpBase {
->values(array(
'nid' => 1,
'vid' => 2,
'uid' => 1,
'uid' => 2,
'title' => 'Test title rev 2',
'body' => 'test rev 2',
'teaser' => 'test rev 2',