NEW-38: add payout type

This commit is contained in:
a.karlov 2019-02-21 20:58:19 +03:00
parent bb5317269a
commit ed3fd1853a
3 changed files with 19 additions and 3 deletions

12
docker-compose-dev.yml Normal file
View File

@ -0,0 +1,12 @@
version: '3'
services:
postgresql:
image: postgres:9.6
volumes:
- ./data:/var/lib/postgresql
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: newway

View File

@ -14,7 +14,12 @@ spring:
maximum-pool-size: 10 maximum-pool-size: 10
flyway: flyway:
schemas: nw schemas: nw
management:
metrics:
export:
statsd:
flavor: etsy
enabled: false
retry-policy: retry-policy:
maxAttempts: 10 maxAttempts: 10
bm: bm:
@ -94,5 +99,3 @@ dmt:
polling: polling:
delay: 3000 delay: 3000
maxQuerySize: 10 maxQuerySize: 10
management.metrics.export.statsd.flavor: etsy

View File

@ -0,0 +1 @@
ALTER TYPE nw.payout_type ADD VALUE 'wallet';