-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update create_server_dist and add adaptation sql templates
- Loading branch information
1 parent
9a091a5
commit 928fbb9
Showing
5 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
INSERT INTO cws_code (code) | ||
VALUES ( | ||
' | ||
__CUSTOM_METHODS_JAVA__ | ||
' | ||
); | ||
|
||
ALTER TABLE cws_worker ADD asg_class VARCHAR(10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
INSERT INTO cws_code (code) | ||
VALUES ( | ||
' | ||
__CUSTOM_METHODS_JAVA__ | ||
' | ||
); | ||
|
||
ALTER TABLE cws_worker ADD asg_class VARCHAR(10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE IF NOT EXISTS `cws_workers` ( | ||
`id` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', | ||
`name` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', | ||
PRIMARY KEY (`id`, `name`), | ||
UNIQUE KEY (`name`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; |