Removed InheritSideBar db field

`InheritSideBar` is a concept applicable to `Widgets`. It can be re-included as part of the widget module `WidgetPageExtension`
This commit is contained in:
Jeremy Shipman 2013-09-23 09:55:04 +12:00
parent 4f3c258bf4
commit a46b79a854

View File

@ -24,13 +24,10 @@ class BlogTree extends Page {
private static $db = array( private static $db = array(
'Name' => 'Varchar(255)', 'Name' => 'Varchar(255)',
'InheritSideBar' => 'Boolean',
'LandingPageFreshness' => 'Varchar', 'LandingPageFreshness' => 'Varchar',
); );
private static $defaults = array( private static $defaults = array();
'InheritSideBar' => True
);
private static $has_one = array(); private static $has_one = array();