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/09/25 03:41:24 UTC

[pulsar-manager] branch master updated: Fixed mysql schema field token error (#339)

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 7ea7dfa  Fixed mysql schema field token error (#339)
7ea7dfa is described below

commit 7ea7dfaa39ce6decfb30c6a097a56b2db292c992
Author: Guangning <gu...@apache.org>
AuthorDate: Fri Sep 25 11:41:18 2020 +0800

    Fixed mysql schema field token error (#339)
---
 src/main/resources/META-INF/sql/mysql-schema.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/META-INF/sql/mysql-schema.sql b/src/main/resources/META-INF/sql/mysql-schema.sql
index 771b398..90ddf40 100644
--- a/src/main/resources/META-INF/sql/mysql-schema.sql
+++ b/src/main/resources/META-INF/sql/mysql-schema.sql
@@ -126,7 +126,7 @@ CREATE TABLE IF NOT EXISTS tokens (
 
 CREATE TABLE IF NOT EXISTS users (
   user_id BIGINT PRIMARY KEY AUTO_INCREMENT,
-  access_token varchar(256) NOT NULL,
+  access_token varchar(256),
   name varchar(256) NOT NULL,
   description varchar(128),
   email varchar(256),