Skip to content

Commit

Permalink
server: Add index field to transactions table
Browse files Browse the repository at this point in the history
The transaction order from the xsnd must be recoverable
when we store the transactions in the database.
  • Loading branch information
AlexITC committed Dec 30, 2018
1 parent fe9d298 commit 585978f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions server/conf/evolutions/default/9.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# --- !Ups

ALTER TABLE transactions
ADD COLUMN index NON_NEGATIVE_INT_TYPE NULL DEFAULT NULL;


# --- !Downs

ALTER TABLE transactions
DROP COLUMN index;

0 comments on commit 585978f

Please sign in to comment.