Added schema upgrade for transaction distance
This commit is contained in:
parent
1a0dbf7098
commit
bfcacbee32
9 changed files with 1929 additions and 1 deletions
12
share/ddl/PostgreSQL/upgrade/10-11/001-auto.sql
Normal file
12
share/ddl/PostgreSQL/upgrade/10-11/001-auto.sql
Normal file
|
@ -0,0 +1,12 @@
|
|||
-- Convert schema 'share/ddl/_source/deploy/10/001-auto.yml' to 'share/ddl/_source/deploy/11/001-auto.yml':;
|
||||
|
||||
;
|
||||
BEGIN;
|
||||
|
||||
;
|
||||
ALTER TABLE transactions ADD COLUMN distance numeric(15);
|
||||
|
||||
;
|
||||
|
||||
COMMIT;
|
||||
|
Reference in a new issue