mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Add alter table scripts.
This commit is contained in:
parent
67398fe07e
commit
0d81db52f1
@ -35,8 +35,7 @@ CREATE TABLE ACCESS_AUDITORY (
|
|||||||
# ON UPDATE NO ACTION
|
# ON UPDATE NO ACTION
|
||||||
#, ADD INDEX `user_id` () ;
|
#, ADD INDEX `user_id` () ;
|
||||||
|
|
||||||
ALTER TABLE `MINDMAP_HISTORY` DROP COLUMN `creator_user`, ADD COLUMN `editor_id` INT(11) NULL DEFAULT NULL
|
ALTER TABLE `MINDMAP_HISTORY` DROP COLUMN `creator_user`, ADD COLUMN `editor_id` INT(11) NULL DEFAULT NULL AFTER `creation_date`;
|
||||||
AFTER `creation_date`;
|
|
||||||
|
|
||||||
ALTER TABLE `USER` ADD COLUMN `locale` VARCHAR(5) NULL
|
ALTER TABLE `USER` ADD COLUMN `locale` VARCHAR(5) NULL
|
||||||
AFTER `allowSendEmail`;
|
AFTER `allowSendEmail`;
|
||||||
|
5
config/database/mysql/v3.0-to-v3.1.sql
Normal file
5
config/database/mysql/v3.0-to-v3.1.sql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
ALTER TABLE `USER` ADD COLUMN `authentication_type` CHAR(1) CHARACTER SET utf8 NOT NULL DEFAULT 'D'
|
||||||
|
AFTER `colaborator_id`;
|
||||||
|
|
||||||
|
ALTER TABLE `USER` ADD COLUMN `authenticator_uri` VARCHAR(255) CHARACTER SET utf8
|
||||||
|
AFTER `authentication_type`;
|
@ -74,7 +74,10 @@ public class UsersController {
|
|||||||
userService.resetPassword(email);
|
userService.resetPassword(email);
|
||||||
result = new ModelAndView("forgotPasswordSuccess");
|
result = new ModelAndView("forgotPasswordSuccess");
|
||||||
|
|
||||||
} catch (InvalidUserEmailException|InvalidAuthSchemaException e) {
|
} catch (InvalidUserEmailException e) {
|
||||||
|
result = new ModelAndView("forgotPasswordError");
|
||||||
|
}
|
||||||
|
catch (InvalidAuthSchemaException e) {
|
||||||
result = new ModelAndView("forgotPasswordError");
|
result = new ModelAndView("forgotPasswordError");
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
Reference in New Issue
Block a user