Skip to content

Commit

Permalink
Apply entity updates when performing database updates. (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
pingers authored Sep 6, 2018
1 parent 4e7e6b0 commit b013773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RoboFileBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ public function devImportDb($sql_file) {
$this->_exec("$this->drush_cmd sqlq --file=$sql_file");
$this->_exec("$this->drush_cmd cr");
$this->_exec("$this->drush_cmd upwd admin --password=password");
$this->_exec("$this->drush_cmd updb -y");
$this->_exec("$this->drush_cmd updb --entity-updates -y");
$this->say('Duration: ' . date_diff(new DateTime(), $start)->format('%im %Ss'));
$this->say('Database imported, admin user password is : password');
}
Expand Down

0 comments on commit b013773

Please sign in to comment.