Aias00 commented on code in PR #5746:
URL: https://github.com/apache/shenyu/pull/5746#discussion_r1829235237
##########
db/init/oracle/schema.sql:
##########
@@ -2997,4 +2997,27 @@ comment on column SCALE_HISTORY.msg
comment on column SCALE_HISTORY.date_created
is 'create time';
comment on column SCALE_HISTORY.date_updated
- is 'update time';
\ No newline at end of file
+ is 'update time';
+
+
+create table namespace_user_rel
+(
+ id varchar(128) not null,
+ namespace_id varchar(50) NOT NULL,
+ user_id varchar(128) NOT NULL,
+ date_created timestamp(3) default SYSDATE not null,
+ date_updated timestamp(3) default SYSDATE not null,
+ PRIMARY KEY (id)
+);
Review Comment:
oh, i missed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]