schema.sql 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Copyright 1999-2018 Alibaba Group Holding Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. CREATE SCHEMA nacos AUTHORIZATION nacos;
  17. CREATE TABLE config_info (
  18. id bigint NOT NULL generated by default as identity,
  19. data_id varchar(255) NOT NULL,
  20. group_id varchar(128) NOT NULL,
  21. tenant_id varchar(128) default '',
  22. app_name varchar(128),
  23. content CLOB,
  24. md5 varchar(32) DEFAULT NULL,
  25. gmt_create timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  26. gmt_modified timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  27. src_user varchar(128) DEFAULT NULL,
  28. src_ip varchar(20) DEFAULT NULL,
  29. c_desc varchar(256) DEFAULT NULL,
  30. c_use varchar(64) DEFAULT NULL,
  31. effect varchar(64) DEFAULT NULL,
  32. type varchar(64) DEFAULT NULL,
  33. c_schema LONG VARCHAR DEFAULT NULL,
  34. constraint configinfo_id_key PRIMARY KEY (id),
  35. constraint uk_configinfo_datagrouptenant UNIQUE (data_id,group_id,tenant_id));
  36. CREATE INDEX configinfo_dataid_key_idx ON config_info(data_id);
  37. CREATE INDEX configinfo_groupid_key_idx ON config_info(group_id);
  38. CREATE INDEX configinfo_dataid_group_key_idx ON config_info(data_id, group_id);
  39. CREATE TABLE his_config_info (
  40. id bigint NOT NULL,
  41. nid bigint NOT NULL generated by default as identity,
  42. data_id varchar(255) NOT NULL,
  43. group_id varchar(128) NOT NULL,
  44. tenant_id varchar(128) default '',
  45. app_name varchar(128),
  46. content CLOB,
  47. md5 varchar(32) DEFAULT NULL,
  48. gmt_create timestamp NOT NULL DEFAULT '2010-05-05 00:00:00.000',
  49. gmt_modified timestamp NOT NULL DEFAULT '2010-05-05 00:00:00.000',
  50. src_user varchar(128),
  51. src_ip varchar(20) DEFAULT NULL,
  52. op_type char(10) DEFAULT NULL,
  53. constraint hisconfiginfo_nid_key PRIMARY KEY (nid));
  54. CREATE INDEX hisconfiginfo_dataid_key_idx ON his_config_info(data_id);
  55. CREATE INDEX hisconfiginfo_gmt_create_idx ON his_config_info(gmt_create);
  56. CREATE INDEX hisconfiginfo_gmt_modified_idx ON his_config_info(gmt_modified);
  57. CREATE TABLE config_info_beta (
  58. id bigint NOT NULL generated by default as identity,
  59. data_id varchar(255) NOT NULL,
  60. group_id varchar(128) NOT NULL,
  61. tenant_id varchar(128) default '',
  62. app_name varchar(128),
  63. content CLOB,
  64. beta_ips varchar(1024),
  65. md5 varchar(32) DEFAULT NULL,
  66. gmt_create timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  67. gmt_modified timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  68. src_user varchar(128),
  69. src_ip varchar(20) DEFAULT NULL,
  70. constraint configinfobeta_id_key PRIMARY KEY (id),
  71. constraint uk_configinfobeta_datagrouptenant UNIQUE (data_id,group_id,tenant_id));
  72. CREATE TABLE config_info_tag (
  73. id bigint NOT NULL generated by default as identity,
  74. data_id varchar(255) NOT NULL,
  75. group_id varchar(128) NOT NULL,
  76. tenant_id varchar(128) default '',
  77. tag_id varchar(128) NOT NULL,
  78. app_name varchar(128),
  79. content CLOB,
  80. md5 varchar(32) DEFAULT NULL,
  81. gmt_create timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  82. gmt_modified timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  83. src_user varchar(128),
  84. src_ip varchar(20) DEFAULT NULL,
  85. constraint configinfotag_id_key PRIMARY KEY (id),
  86. constraint uk_configinfotag_datagrouptenanttag UNIQUE (data_id,group_id,tenant_id,tag_id));
  87. CREATE TABLE config_info_aggr (
  88. id bigint NOT NULL generated by default as identity,
  89. data_id varchar(255) NOT NULL,
  90. group_id varchar(128) NOT NULL,
  91. tenant_id varchar(128) default '',
  92. datum_id varchar(255) NOT NULL,
  93. app_name varchar(128),
  94. content CLOB,
  95. gmt_modified timestamp NOT NULL DEFAULT '2010-05-05 00:00:00',
  96. constraint configinfoaggr_id_key PRIMARY KEY (id),
  97. constraint uk_configinfoaggr_datagrouptenantdatum UNIQUE (data_id,group_id,tenant_id,datum_id));
  98. CREATE TABLE app_list (
  99. id bigint NOT NULL generated by default as identity,
  100. app_name varchar(128) NOT NULL,
  101. is_dynamic_collect_disabled smallint DEFAULT 0,
  102. last_sub_info_collected_time timestamp DEFAULT '1970-01-01 08:00:00.0',
  103. sub_info_lock_owner varchar(128),
  104. sub_info_lock_time timestamp DEFAULT '1970-01-01 08:00:00.0',
  105. constraint applist_id_key PRIMARY KEY (id),
  106. constraint uk_appname UNIQUE (app_name));
  107. CREATE TABLE app_configdata_relation_subs (
  108. id bigint NOT NULL generated by default as identity,
  109. app_name varchar(128) NOT NULL,
  110. data_id varchar(255) NOT NULL,
  111. group_id varchar(128) NOT NULL,
  112. gmt_modified timestamp DEFAULT '2010-05-05 00:00:00',
  113. constraint configdatarelationsubs_id_key PRIMARY KEY (id),
  114. constraint uk_app_sub_config_datagroup UNIQUE (app_name, data_id, group_id));
  115. CREATE TABLE app_configdata_relation_pubs (
  116. id bigint NOT NULL generated by default as identity,
  117. app_name varchar(128) NOT NULL,
  118. data_id varchar(255) NOT NULL,
  119. group_id varchar(128) NOT NULL,
  120. gmt_modified timestamp DEFAULT '2010-05-05 00:00:00',
  121. constraint configdatarelationpubs_id_key PRIMARY KEY (id),
  122. constraint uk_app_pub_config_datagroup UNIQUE (app_name, data_id, group_id));
  123. CREATE TABLE config_tags_relation (
  124. id bigint NOT NULL,
  125. tag_name varchar(128) NOT NULL,
  126. tag_type varchar(64) DEFAULT NULL,
  127. data_id varchar(255) NOT NULL,
  128. group_id varchar(128) NOT NULL,
  129. tenant_id varchar(128) DEFAULT '',
  130. nid bigint NOT NULL generated by default as identity,
  131. constraint config_tags_id_key PRIMARY KEY (nid),
  132. constraint uk_configtagrelation_configidtag UNIQUE (id, tag_name, tag_type));
  133. CREATE INDEX config_tags_tenant_id_idx ON config_tags_relation(tenant_id);
  134. CREATE TABLE group_capacity (
  135. id bigint NOT NULL generated by default as identity,
  136. group_id varchar(128) DEFAULT '',
  137. quota int DEFAULT 0,
  138. usage int DEFAULT 0,
  139. max_size int DEFAULT 0,
  140. max_aggr_count int DEFAULT 0,
  141. max_aggr_size int DEFAULT 0,
  142. max_history_count int DEFAULT 0,
  143. gmt_create timestamp DEFAULT '2010-05-05 00:00:00',
  144. gmt_modified timestamp DEFAULT '2010-05-05 00:00:00',
  145. constraint group_capacity_id_key PRIMARY KEY (id),
  146. constraint uk_group_id UNIQUE (group_id));
  147. CREATE TABLE tenant_capacity (
  148. id bigint NOT NULL generated by default as identity,
  149. tenant_id varchar(128) DEFAULT '',
  150. quota int DEFAULT 0,
  151. usage int DEFAULT 0,
  152. max_size int DEFAULT 0,
  153. max_aggr_count int DEFAULT 0,
  154. max_aggr_size int DEFAULT 0,
  155. max_history_count int DEFAULT 0,
  156. gmt_create timestamp DEFAULT '2010-05-05 00:00:00',
  157. gmt_modified timestamp DEFAULT '2010-05-05 00:00:00',
  158. constraint tenant_capacity_id_key PRIMARY KEY (id),
  159. constraint uk_tenant_id UNIQUE (tenant_id));
  160. CREATE TABLE tenant_info (
  161. id bigint NOT NULL generated by default as identity,
  162. kp varchar(128) NOT NULL,
  163. tenant_id varchar(128) DEFAULT '',
  164. tenant_name varchar(128) DEFAULT '',
  165. tenant_desc varchar(256) DEFAULT NULL,
  166. create_source varchar(32) DEFAULT NULL,
  167. gmt_create bigint NOT NULL,
  168. gmt_modified bigint NOT NULL,
  169. constraint tenant_info_id_key PRIMARY KEY (id),
  170. constraint uk_tenant_info_kptenantid UNIQUE (kp,tenant_id));
  171. CREATE INDEX tenant_info_tenant_id_idx ON tenant_info(tenant_id);
  172. CREATE TABLE users (
  173. username varchar(50) NOT NULL PRIMARY KEY,
  174. password varchar(500) NOT NULL,
  175. enabled boolean NOT NULL DEFAULT true
  176. );
  177. CREATE TABLE roles (
  178. username varchar(50) NOT NULL,
  179. role varchar(50) NOT NULL,
  180. constraint uk_username_role UNIQUE (username,role)
  181. );
  182. CREATE TABLE permissions (
  183. role varchar(50) NOT NULL,
  184. resource varchar(512) NOT NULL,
  185. action varchar(8) NOT NULL,
  186. constraint uk_role_permission UNIQUE (role,resource,action)
  187. );
  188. INSERT INTO users (username, password, enabled) VALUES ('nacos', '$2a$10$EuWPZHzz32dJN7jexM34MOeYirDdFAZm2kuWj7VEOJhhZkDrxfvUu', TRUE);
  189. INSERT INTO roles (username, role) VALUES ('nacos', 'ROLE_ADMIN');