-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add support for 4-character currency codes #10
base: master
Are you sure you want to change the base?
Conversation
ALTER TABLE `" . DB_PREFIX . "currency` | ||
MODIFY `code` VARCHAR(4) COLLATE utf8_general_ci NOT NULL; | ||
"); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a check if table is 3 charters should be done before editing table
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can add it if you think it's needed, but "modifying" it from 4 to 4 simply won't make any changes, so I thought it wasn't necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added the check
No description provided.