Skip to content

Commit

Permalink
README Update 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Chang authored and Allen Chang committed Jun 25, 2009
1 parent d4c875d commit 55452b9
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,22 @@ Follow the instructions below if you are updating from Symphony version 2.0 (non
7. Dance like it's 1999!


### Update Upload Field

Update your corresponding entries_data_xx table with the following:

ALTER TABLE `tbl_entries_data_XX` CHANGE `mimetype` `mimetype` VARCHAR( 50 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL

The table number, 'XX' should be whatever ID of your upload field. If you have more than one upload field, run the above query for each field.


### Adding Navigation Group to sections
#### Adding Navigation Group to sections

Be sure to run the following MySQL commands to get the new section navigation group functionality. Change `sym_` to match your table prefix value

ALTER TABLE `sym_sections` ADD `navigation_group` VARCHAR( 50 ) NOT NULL DEFAULT 'Content';

ALTER TABLE `sym_sections` ADD INDEX ( `navigation_group` ) ;

#### Update Upload Field

Update your corresponding entries_data_xx table with the following:

ALTER TABLE `tbl_entries_data_XX` CHANGE `mimetype` `mimetype` VARCHAR( 50 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL

The table number, 'XX' should be whatever ID of your upload field. If you have more than one upload field, run the above query for each field.


### INSTALLING VIA GIT

Expand Down

0 comments on commit 55452b9

Please sign in to comment.