Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix errors on install-db.sh #173

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataBase/mysql-5.x/UPDATE-a2billing-v1.4.0-to-v1.4.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Delete from cc_config where config_key='cid_auto_create_card_tariffgroup';
-- change type in cc_config
ALTER TABLE cc_config CHANGE config_title config_title VARCHAR( 100 );
ALTER TABLE cc_config CHANGE config_key config_key VARCHAR( 100 );
ALTER TABLE cc_config CHANGE config_value config_value VARCHAR( 100 );
ALTER IGNORE TABLE cc_config CHANGE config_value config_value VARCHAR( 100 );
ALTER TABLE cc_config CHANGE config_listvalues config_listvalues VARCHAR( 100 );

-- Set Qualify at No per default
Expand Down
2 changes: 1 addition & 1 deletion DataBase/mysql-5.x/UPDATE-a2billing-v1.6.2-to-v1.7.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ALTER TABLE cc_templatemail CHANGE messagehtml messagehtml VARCHAR( 3000 ) CHARA

ALTER TABLE cc_card_group CHANGE description description VARCHAR( 400 ) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL;

ALTER TABLE cc_config CHANGE config_description config_description VARCHAR( 500 ) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL;
ALTER IGNORE TABLE cc_config CHANGE config_description config_description VARCHAR( 500 ) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL;


-- Update Version
Expand Down