diff --git a/app/config/schema/db_acl.php b/app/config/schema/db_acl.php index 25b6ee6df..25ed49204 100644 --- a/app/config/schema/db_acl.php +++ b/app/config/schema/db_acl.php @@ -27,15 +27,6 @@ */ class DbAclSchema extends CakeSchema { - public $name = 'DbAcl'; - - function before($event = array()) { - return true; - } - - function after($event = array()) { - } - public $acos = array( 'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'), 'parent_id' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10), diff --git a/app/config/schema/i18n.php b/app/config/schema/i18n.php index f57bbce7f..7776dbcd0 100644 --- a/app/config/schema/i18n.php +++ b/app/config/schema/i18n.php @@ -27,15 +27,6 @@ */ class i18nSchema extends CakeSchema { - public $name = 'i18n'; - - function before($event = array()) { - return true; - } - - function after($event = array()) { - } - public $i18n = array( 'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'), 'locale' => array('type'=>'string', 'null' => false, 'length' => 6, 'key' => 'index'), diff --git a/app/config/schema/sessions.php b/app/config/schema/sessions.php index e5ae37dc1..6304317f9 100644 --- a/app/config/schema/sessions.php +++ b/app/config/schema/sessions.php @@ -27,15 +27,6 @@ */ class SessionsSchema extends CakeSchema { - public $name = 'Sessions'; - - function before($event = array()) { - return true; - } - - function after($event = array()) { - } - public $cake_sessions = array( 'id' => array('type'=>'string', 'null' => false, 'key' => 'primary'), 'data' => array('type'=>'text', 'null' => true, 'default' => NULL), diff --git a/cake/libs/model/cake_schema.php b/cake/libs/model/cake_schema.php index fb3a77c13..eb577c7d8 100644 --- a/cake/libs/model/cake_schema.php +++ b/cake/libs/model/cake_schema.php @@ -26,14 +26,6 @@ App::import('Core', 'ConnectionManager'); */ class CakeSchema extends Object { -/** - * Name of the App Schema - * - * @var string - * @access public - */ - public $name = null; - /** * Path to write location * @@ -337,8 +329,6 @@ class CakeSchema extends Object { $out = "class {$name}Schema extends CakeSchema {\n"; - $out .= "\tvar \$name = '{$name}';\n\n"; - if ($path !== $this->path) { $out .= "\tvar \$path = '{$path}';\n\n"; }