-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from stelin/1.x
Fixed bug
- Loading branch information
Showing
95 changed files
with
348 additions
and
126 deletions.
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
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
25 changes: 25 additions & 0 deletions
25
...rver/openjob-server-starter/src/main/resources/db/migration/oracle/V3__v1.0.7_release.sql
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,25 @@ | ||
-- ---------------------------- | ||
-- Table structure for job_instance | ||
-- ---------------------------- | ||
ALTER TABLE "job_instance" ADD "dispatch_version" NUMBER(32); | ||
ALTER TABLE "job_instance" ADD "execute_once" NUMBER(2); | ||
|
||
-- ---------------------------- | ||
-- Table structure for job_instance_task | ||
-- ---------------------------- | ||
ALTER TABLE "job_instance_task" ADD "dispatch_version" NUMBER(32); | ||
|
||
-- ---------------------------- | ||
-- COMMENT | ||
-- ---------------------------- | ||
COMMENT ON COLUMN "job_instance"."dispatch_version" IS 'Dispatch version'; | ||
|
||
COMMENT ON COLUMN "job_instance"."execute_once" IS 'Execute once, 1=yes 2=no'; | ||
|
||
COMMENT ON COLUMN "job_instance_task"."dispatch_version" IS 'Dispatch version'; | ||
|
||
-- ---------------------------- | ||
-- UPDATE | ||
-- ---------------------------- | ||
UPDATE "job_instance" SET "dispatch_version" = 0, "execute_once" = 2; | ||
UPDATE "job_instance_task" SET "dispatch_version" = 0; |
21 changes: 21 additions & 0 deletions
21
.../openjob-server-starter/src/main/resources/db/migration/postgresql/V3__v1.0.7_release.sql
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,21 @@ | ||
-- ---------------------------- | ||
-- Table structure for job_instance | ||
-- ---------------------------- | ||
ALTER TABLE "job_instance" | ||
ADD COLUMN "dispatch_version" numeric(20,0); | ||
ALTER TABLE "job_instance" | ||
ADD COLUMN "execute_once" int2; | ||
|
||
COMMENT ON COLUMN "job_instance"."dispatch_version" IS 'Dispatch version'; | ||
COMMENT ON COLUMN "job_instance"."execute_once" IS 'Execute once, 1=yes 2=no'; | ||
|
||
UPDATE "job_instance" SET "dispatch_version" = 0, "execute_once" = 2; | ||
-- ---------------------------- | ||
-- Table structure for job_instance_task | ||
-- ---------------------------- | ||
ALTER TABLE "job_instance_task" | ||
ADD COLUMN "dispatch_version" numeric(20,0); | ||
|
||
COMMENT ON COLUMN "job_instance_task"."dispatch_version" IS 'Dispatch version'; | ||
|
||
UPDATE "job_instance_task" SET "dispatch_version" = 0; |
2 changes: 1 addition & 1 deletion
2
...sources/static/assets/account.f44f47b1.js → ...sources/static/assets/account.758e3bba.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.