Skip to content

Commit

Permalink
fixdb
Browse files Browse the repository at this point in the history
  • Loading branch information
hey-hoho committed Jan 14, 2020
1 parent 5c4716d commit 0a01ac7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/db/db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,17 @@ create table servernodes
(
NodeName varchar(255) charset utf8mb4 not null
primary key,
NodeType longtext charset utf8mb4 not null,
MachineName longtext charset utf8mb4 null,
AccessProtocol longtext charset utf8mb4 not null,
Host longtext charset utf8mb4 not null,
AccessSecret longtext charset utf8mb4 null,
LastUpdateTime datetime(6) null,
Status int not null,
Priority int not null,
AccessProtocol longtext charset utf8mb4 null,
AccessSecret longtext charset utf8mb4 null
Priority int not null
);


create table systemconfigs
(
`Key` varchar(50) charset utf8mb4 not null
Expand Down

0 comments on commit 0a01ac7

Please sign in to comment.