<?php /* * Schema Version, sets the schema version for this database file */ $database['schema_version'] = array('major_version' => '0', 'minor_version' => '0', 'version_edit' => '1', 'custom_major' => '0', 'custom_minor' => '0', 'custom_edit' => '0', ); /* * Minimum Update Verson, Minimum version ot the schema to allow theupdate. */ $database['minimum_version'] = array( 'major_version' => '0', 'minor_version' => '0', 'version_edit' => '0', );
/* * Table schema_version */ $database['tables']['#schema_version']['columns']['major_version'] = array('Field' => 'major_version', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['columns']['minor_version'] = array('Field' => 'minor_version', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['columns']['version_edit'] = array('Field' => 'version_edit', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['columns']['custom_major'] = array('Field' => 'custom_major', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '0', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['columns']['custom_minor'] = array('Field' => 'custom_minor', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '0', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['columns']['custom_edit'] = array('Field' => 'custom_edit', 'Type' => 'int(11)', 'Collation' => '', 'Null' => 'NO', 'Key' => '', 'Default' => '0', 'Extra' => '', 'Privileges' => 'select,insert,update,references', 'Comment' => '', ); $database['tables']['#schema_version']['Engine'] = 'MyISAM'; $database['tables']['#schema_version']['Collation'] = 'latin1_swedish_ci';
|