跟踪RCS中的块/视图/cck等更改,并使用Drupal更新进行迁移。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跟踪RCS中的块/视图/cck等更改,并使用Drupal更新进行迁移。相关的知识,希望对你有一定的参考价值。
Takes a .sql file and runs trough that, each line as an update_sql.Very usefull to track and migrate your blocks/views/cck etc changes.
/** * Make these queries with mysqldump -uusernam -p database_name -t blocks -c --compact --skip-extended-insert | sort | uniq > sitese/all/modules/projectname_meta/blocks.sql **/ function projectname_meta_update_5002() { 'blocks' => 'blocks.sql', ); foreach($files as $table => $name) { $table = db_escape_string($table); $ret[] = update_sql('TRUNCATE {'. $table .'}'); foreach ($lines as $line_num => $line) { $ret[] = update_sql($line); } } } return $ret; }
以上是关于跟踪RCS中的块/视图/cck等更改,并使用Drupal更新进行迁移。的主要内容,如果未能解决你的问题,请参考以下文章