forked from github/dataease
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
f26ba152d8
@ -50,3 +50,7 @@ INSERT INTO `system_parameter` VALUES ('oidc.open', NULL, 'text', 9);
|
||||
COMMIT;
|
||||
|
||||
ALTER TABLE `sys_user` ADD COLUMN `sub` varchar(255) COMMENT 'oidc用户ID' AFTER `from`;
|
||||
|
||||
CREATE INDEX dataset_table_task_log_index ON dataset_table_task_log (id,task_id,table_id);
|
||||
CREATE INDEX dataset_table_task_index ON dataset_table_task (id);
|
||||
CREATE INDEX dataset_table_index ON dataset_table (id);
|
||||
|
@ -131,6 +131,7 @@ export default {
|
||||
form: {
|
||||
configuration: {
|
||||
initialPoolSize: 5,
|
||||
extraParams: '',
|
||||
minPoolSize: 5,
|
||||
maxPoolSize: 50,
|
||||
maxIdleTime: 30,
|
||||
@ -192,6 +193,7 @@ export default {
|
||||
this.form.type = this.params.type
|
||||
this.form.configuration = {
|
||||
initialPoolSize: 5,
|
||||
extraParams: '',
|
||||
minPoolSize: 5,
|
||||
maxPoolSize: 50,
|
||||
maxIdleTime: 30,
|
||||
|
Loading…
Reference in New Issue
Block a user