Add balance auto reload

Closes #329
This commit is contained in:
Artur Beljajev 2018-09-06 12:09:57 +03:00
parent 19f9a4eb71
commit 62c38d1f99
29 changed files with 660 additions and 16 deletions

View file

@ -2201,7 +2201,8 @@ CREATE TABLE public.registrars (
test_registrar boolean DEFAULT false,
language character varying NOT NULL,
vat_rate numeric(4,3),
iban character varying
iban character varying,
settings jsonb DEFAULT '{}'::jsonb NOT NULL
);
@ -4963,6 +4964,8 @@ INSERT INTO schema_migrations (version) VALUES ('20190328151838');
INSERT INTO schema_migrations (version) VALUES ('20190415120246');
INSERT INTO schema_migrations (version) VALUES ('20190426174225');
INSERT INTO schema_migrations (version) VALUES ('20190510090240');
INSERT INTO schema_migrations (version) VALUES ('20190510102549');