Skip to content

Commit

Permalink
Added missing field "alias" in schema for table "menus"
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Aug 3, 2011
1 parent e4f8d88 commit 6065efd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/schema/schema.php
@@ -1,4 +1,4 @@
<?php
<?php
/* App schema generated on: 2011-03-28 03:44:07 : 1301280247*/
class AppSchema extends CakeSchema {
var $name = 'App';
Expand Down Expand Up @@ -158,6 +158,7 @@ function after($event = array()) {
var $menus = array(
'id' => array('type' => 'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
'title' => array('type' => 'string', 'null' => false, 'default' => NULL, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'),
'alias' => array('type' => 'string', 'null' => false, 'default' => NULL, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'),
'class' => array('type' => 'string', 'null' => false, 'default' => NULL, 'key' => 'unique', 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'),
'description' => array('type' => 'text', 'null' => true, 'default' => NULL, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'),
'status' => array('type' => 'boolean', 'null' => false, 'default' => '1'),
Expand Down

0 comments on commit 6065efd

Please sign in to comment.