drupal-6.node_type_broken.database.php 651 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. db_insert('comments')->fields(array(
  3. 'cid',
  4. 'pid',
  5. 'nid',
  6. 'uid',
  7. 'subject',
  8. 'comment',
  9. 'hostname',
  10. 'timestamp',
  11. 'status',
  12. 'format',
  13. 'thread',
  14. 'name',
  15. 'mail',
  16. 'homepage',
  17. ))
  18. ->values(array(
  19. 'cid' => 1,
  20. 'pid' => 0,
  21. 'nid' => 37,
  22. 'uid' => 3,
  23. 'subject' => 'Comment title 1',
  24. 'comment' => 'Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1',
  25. 'hostname' => '127.0.0.1',
  26. 'timestamp' => 1008617630,
  27. 'status' => 0,
  28. 'format' => 1,
  29. 'thread' => '01/',
  30. 'name' => NULL,
  31. 'mail' => NULL,
  32. 'homepage' => '',
  33. ))
  34. ->execute();