-
Notifications
You must be signed in to change notification settings - Fork 0
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 #119 from FigureTechnologies/allow_duplicate_tx
Allow recording of duplicate transactions
- Loading branch information
Showing
7 changed files
with
80 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ALTER TABLE ATTRIBUTES ADD IF NOT EXISTS uuid UUID; | ||
ALTER TABLE ATTRIBUTES DROP CONSTRAINT attributes_pkey; | ||
ALTER TABLE ATTRIBUTES ADD PRIMARY KEY (uuid); | ||
|
||
ALTER TABLE COIN_TRANSFER ADD IF NOT EXISTS uuid UUID; | ||
ALTER TABLE COIN_TRANSFER DROP CONSTRAINT coin_transfer_pkey; | ||
ALTER TABLE COIN_TRANSFER ADD PRIMARY KEY (uuid); | ||
|
||
ALTER TABLE FEES ADD IF NOT EXISTS uuid UUID; | ||
ALTER TABLE FEES DROP CONSTRAINT fees_pkey; | ||
ALTER TABLE FEES ADD PRIMARY KEY (uuid); | ||
|
||
ALTER TABLE MARKER_SUPPLY ADD IF NOT EXISTS uuid UUID; | ||
ALTER TABLE MARKER_SUPPLY DROP CONSTRAINT marker_supply_pkey; | ||
ALTER TABLE MARKER_SUPPLY ADD PRIMARY KEY (uuid); | ||
|
||
ALTER TABLE MARKER_TRANSFER ADD IF NOT EXISTS uuid UUID; | ||
ALTER TABLE MARKER_TRANSFER DROP CONSTRAINT marker_transfer_pkey; | ||
ALTER TABLE MARKER_TRANSFER ADD PRIMARY KEY (uuid); |
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