Browse Source

server: Remove the TPoS addresses from the transaction_outputs table

master
Alexis Hernandez 6 years ago
parent
commit
1daa9ee3cc
  1. 13
      server/conf/evolutions/default/16.sql

13
server/conf/evolutions/default/16.sql

@ -0,0 +1,13 @@
# --- !Ups
ALTER TABLE transaction_outputs
DROP COLUMN tpos_owner_address,
DROP COLUMN tpos_merchant_address;
# --- !Downs
ALTER TABLE blocks
ADD COLUMN tpos_owner_address ADDRESS_TYPE NULL,
ADD COLUMN tpos_merchant_address ADDRESS_TYPE NULL;
Loading…
Cancel
Save