Merge pull request #256 from flashbackzoo/pulls/fix-migration

Fix migration task
This commit is contained in:
Christopher Pitt 2015-05-26 12:00:09 +12:00
commit b80591afda
1 changed files with 3 additions and 4 deletions

View File

@ -50,10 +50,9 @@ class BlogEntry extends BlogPost implements MigratableObject {
$this->PublishDate = $this->Date;
if($this->ClassName === 'BlogEntry') {
$this->ClassName = 'BlogPost';
}
$this->ClassName = 'BlogPost';
$this->RecordClassName = 'BlogPost';
$this->write();
}