// revert multishop declaration in definitions

This commit is contained in:
tDidierjean
2012-05-18 15:03:30 +00:00
parent 644c614975
commit 271d8e8d02
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -56,7 +56,6 @@ class LanguageCore extends ObjectModel
public static $definition = array(
'table' => 'lang',
'primary' => 'id_lang',
'multishop' => true,
'fields' => array(
'name' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'required' => true, 'size' => 32),
'iso_code' => array('type' => self::TYPE_STRING, 'validate' => 'isLanguageIsoCode', 'required' => true, 'size' => 2),
-1
View File
@@ -49,7 +49,6 @@ class SceneCore extends ObjectModel
'table' => 'scene',
'primary' => 'id_scene',
'multilang' => true,
'multishop' => true,
'fields' => array(
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
-1
View File
@@ -65,7 +65,6 @@ class WarehouseCore extends ObjectModel
public static $definition = array(
'table' => 'warehouse',
'primary' => 'id_warehouse',
'multishop' => true,
'fields' => array(
'id_address' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'reference' => array('type' => self::TYPE_STRING, 'validate' => 'isString', 'required' => true, 'size' => 45),