Skip to content

Commit

Permalink
Add project published state information to the mix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdboyer committed Feb 17, 2011
1 parent c14136e commit f59a032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db-migrate-stage1.drush.php
Expand Up @@ -10,7 +10,7 @@
// Load shared functions.
require_once dirname(__FILE__) . '/shared.php';

$result = db_query('SELECT p.nid, p.uri, c.directory FROM project_projects AS p INNER JOIN cvs_projects AS c ON p.nid = c.nid');
$result = db_query('SELECT p.nid, p.uri, c.directory, n.status FROM {project_projects} AS p INNER JOIN {cvs_projects} AS c ON p.nid = c.nid INNER JOIN {nid} AS n ON p.nid = n.nid');

$projects = array();
while ($row = db_fetch_object($result)) {
Expand Down

0 comments on commit f59a032

Please sign in to comment.