You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by gu...@apache.org on 2020/05/09 03:22:51 UTC

[pulsar-manager] branch master updated: fixed a SQL syntax error (#298)

This is an automated email from the ASF dual-hosted git repository.

guangning pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git


The following commit(s) were added to refs/heads/master by this push:
     new d24e505  fixed a SQL syntax error (#298)
d24e505 is described below

commit d24e5055c0d452cb0d702afe5f45e5fd80d4995e
Author: 小龙哥 <38...@qq.com>
AuthorDate: Sat May 9 11:22:40 2020 +0800

    fixed a SQL syntax error (#298)
---
 src/main/resources/META-INF/sql/mysql-schema.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/META-INF/sql/mysql-schema.sql b/src/main/resources/META-INF/sql/mysql-schema.sql
index 5bc57e2..771b398 100644
--- a/src/main/resources/META-INF/sql/mysql-schema.sql
+++ b/src/main/resources/META-INF/sql/mysql-schema.sql
@@ -155,7 +155,7 @@ CREATE TABLE IF NOT EXISTS tenants (
   tenant varchar(255) NOT NULL,
   admin_roles varchar(255),
   allowed_clusters varchar(255),
-  environment_name varchar(255)
+  environment_name varchar(255),
   UNIQUE(tenant)
 )ENGINE=InnoDB CHARACTER SET utf8;
 
@@ -172,4 +172,4 @@ CREATE TABLE IF NOT EXISTS role_binding(
   description varchar(256),
   role_id BIGINT NOT NULL,
   user_id BIGINT NOT NULL
-)ENGINE=InnoDB CHARACTER SET utf8;
\ No newline at end of file
+)ENGINE=InnoDB CHARACTER SET utf8;