summaryrefslogtreecommitdiff
path: root/updates/2.00-to-x.xx.php
blob: 2d5050cd268c22470803437a7eba423851b3fd69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

include "includes/common.inc";

db_query("DELETE FROM watchdog");
db_query("DELETE FROM nodes");
db_query("DELETE FROM story");
db_query("DELETE FROM book");

db_query("UPDATE comments SET type = 'story' WHERE type = 'stories'");

$result = db_query("SELECT * FROM stories");
while ($story = db_fetch_object($result)) {
  $node = array(title => $story->subject, abstract => $story->abstract, body => $story->article, section => $story->section, timestamp => $story->timestamp, votes => $story->votes, score => $stort->score, author => $story->author, type => "story");
  if ($story->status == 2) $node[status] = $status[posted];
  if ($story->status == 1) $node[status] = $status[queued];
  if ($story->status == 0) $node[status] = $status[dumped];
  node_save($node);
}

$result = db_query("SELECT * FROM faqs");
while ($faq = db_fetch_object($result)) {
  $node = array(title => $faq->question, author => 1, body => $faq->answer, weight => $faq->weight, status => $status[posted], type => "book");
  node_save($node);
}

db_query("update users set history = ''");

print "Your database has been upgraded!  Do NOT reload this page!";

?>