You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spms-java/scripts/vue-admin.sql

10 lines
330 B
SQL

create table auth_license ( id varchar(36) not null,
appid varchar(36) not null,
name varchar(100),
api_key varchar(64),
secret_key varchar(2000),
create_date datetime,
constraint pk_auth_license primary key (id)
);