12345678910111213141516171819202122232425262728293031323334353637383940 |
- --
- -- Copyright 2024 Apollo Authors
- --
- -- Licensed under the Apache License, Version 2.0 (the "License");
- -- you may not use this file except in compliance with the License.
- -- You may obtain a copy of the License at
- --
- -- http://www.apache.org/licenses/LICENSE-2.0
- --
- -- Unless required by applicable law or agreed to in writing, software
- -- distributed under the License is distributed on an "AS IS" BASIS,
- -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- -- See the License for the specific language governing permissions and
- -- limitations under the License.
- --
- # delta schema to upgrade apollo portal db from v0.8.0 to v0.9.0
- Use ApolloPortalDB;
- CREATE TABLE `Users` (
- `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id',
- `Username` varchar(64) NOT NULL DEFAULT 'default' COMMENT '用户名',
- `Password` varchar(64) NOT NULL DEFAULT 'default' COMMENT '密码',
- `Email` varchar(64) NOT NULL DEFAULT 'default' COMMENT '邮箱地址',
- `Enabled` tinyint(4) DEFAULT NULL COMMENT '是否有效',
- PRIMARY KEY (`Id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户表';
- CREATE TABLE `Authorities` (
- `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id',
- `Username` varchar(50) NOT NULL,
- `Authority` varchar(50) NOT NULL,
- PRIMARY KEY (`Id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- INSERT INTO `Users` (`Username`, `Password`, `Email`, `Enabled`)
- VALUES
- ('apollo', '$2a$10$7r20uS.BQ9uBpf3Baj3uQOZvMVvB1RN3PYoKE94gtz2.WAOuiiwXS', 'apollo@acme.com', 1);
- INSERT INTO `Authorities` (`Username`, `Authority`) VALUES ('apollo', 'ROLE_user');
|