Skip to content

Commit

Permalink
alter database name to resolve the conflict that qualitis has the sam…
Browse files Browse the repository at this point in the history
…e table name with visualis
  • Loading branch information
Davidhua1996 committed Dec 11, 2019
1 parent bd4b569 commit c616e18
Show file tree
Hide file tree
Showing 32 changed files with 435 additions and 357 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author howeye
*/
@Entity
@Table(name = "application_task_result")
@Table(name = "qualitis_application_task_result")
public class TaskResult {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author howeye
*/
@Entity
@Table(name = "project")
@Table(name = "qualitis_project")
public class Project {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "project_user")
@Table(name = "qualitis_project_user")
public class ProjectUser {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule_alarm_config")
@Table(name = "qualitis_rule_alarm_config")
public class AlarmConfig {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule", uniqueConstraints = @UniqueConstraint(columnNames = {"project_id", "name"}))
@Table(name = "qualitis_rule", uniqueConstraints = @UniqueConstraint(columnNames = {"project_id", "name"}))
public class Rule {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule_datasource")
@Table(name = "qualitis_rule_datasource")
public class RuleDataSource {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule_datasource_mapping")
@Table(name = "qualitis_rule_datasource_mapping")
public class RuleDataSourceMapping {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule_group")
@Table(name = "qualitis_rule_group")
public class RuleGroup {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author howeye
*/
@Entity
@Table(name = "rule_variable")
@Table(name = "qualitis_rule_variable")
public class RuleVariable {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "template")
@Table(name = "qualitis_template")
public class Template {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author howeye
*/
@Table
@Entity(name = "template_mid_table_input_meta")
@Entity(name = "qualitis_template_mid_table_input_meta")
public class TemplateMidTableInputMeta {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "template_output_meta")
@Table(name = "qualitis_template_output_meta")
public class TemplateOutputMeta {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author howeye
*/
@Entity
@Table(name = "template_regexp_expr")
@Table(name = "qualitis_template_regexp_expr")
public class TemplateRegexpExpr {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "template_statistic_input_meta")
@Table(name = "qualitis_template_statistic_input_meta")
public class TemplateStatisticsInputMeta {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "template_user")
@Table(name = "qualitis_template_user")
public class TemplateUser {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author howeye
*/
@Entity
@Table(name = "config_cluster_info")
@Table(name = "qualitis_config_cluster_info")
public class ClusterInfo {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author howeye
*/
@Entity
@Table(name = "application")
@Table(name = "qualitis_application")
public class Application {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author howeye
*/
@Entity
@Table(name = "application_task")
@Table(name = "qualitis_application_task")
public class Task {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author howeye
*/
@Entity
@Table(name = "application_task_datasource")
@Table(name = "qualitis_application_task_datasource")
public class TaskDataSource {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @author howeye
*/
@Entity
@Table(name = "application_task_rule_alarm_config")
@Table(name = "qualitis_application_task_rule_alarm_config")
public class TaskRuleAlarmConfig {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author howeye
*/
@Entity
@Table(name = "application_task_rule_simple")
@Table(name = "qualitis_application_task_rule_simple")
public class TaskRuleSimple {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_permission")
@Table(name = "qualitis_auth_permission")
public class Permission {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_proxy_user")
@Table(name = "qualitis_auth_proxy_user")
public class ProxyUser {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_role")
@Table(name = "qualitis_auth_role")
public class Role {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_role_permission")
@Table(name = "qualitis_auth_role_permission")
public class RolePermission {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_user")
@Table(name = "qualitis_auth_user")
public class User {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_user_proxy_user")
@Table(name = "qualitis_auth_user_proxy_user")
public class UserProxyUser {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_user_role")
@Table(name = "qualitis_auth_user_role")
public class UserRole {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author howeye
*/
@Entity
@Table(name = "auth_user_permission")
@Table(name = "qualitis_auth_user_permission")
public class UserSpecPermission {

@Id
Expand Down
Loading

0 comments on commit c616e18

Please sign in to comment.