-
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.
chore(db): queue application version transformer migration to database (
- Loading branch information
1 parent
93002a4
commit d8edd5a
Showing
10 changed files
with
757 additions
and
97 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
database/migrations/postgres/1718182822233211_deployment_attempts.up.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 @@ | ||
../sqlite/1718182822233211_deployment_attempts.up.sql |
9 changes: 9 additions & 0 deletions
9
database/migrations/sqlite/1718182822233211_deployment_attempts.up.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,9 @@ | ||
CREATE TABLE IF NOT EXISTS deployment_attempts | ||
( | ||
eslVersion INTEGER, -- internal ID for ESL | ||
created TIMESTAMP, | ||
envName VARCHAR, | ||
appName VARCHAR, | ||
queuedReleaseVersion BIGINT NULL, | ||
PRIMARY KEY(eslVersion, appName, envName) | ||
); |
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
Oops, something went wrong.