123456789101112131415161718192021222324252627282930313233343536 |
- --
- -- Copyright 2022 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.
- --
- # Dump of table accesskey
- # ------------------------------------------------------------
- Use ApolloConfigDB;
- DROP TABLE IF EXISTS `AccessKey`;
- CREATE TABLE `AccessKey` (
- `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键',
- `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID',
- `Secret` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secret',
- `IsEnabled` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: enabled, 0: disabled',
- `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal',
- `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀',
- `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `DataChange_LastModifiedBy` varchar(32) NOT NULL DEFAULT '' COMMENT '最后修改人邮箱前缀',
- `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间',
- PRIMARY KEY (`Id`),
- KEY `AppId` (`AppId`(191)),
- KEY `DataChange_LastTime` (`DataChange_LastTime`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='访问密钥';
|