Refactor registrars

- Reorganize views
- Improve database structure
- Use default translations
- Combine tests
This commit is contained in:
Artur Beljajev 2019-05-10 13:13:19 +03:00
parent 59e9b16dfa
commit efb63399b2
27 changed files with 287 additions and 353 deletions

View file

@ -2188,11 +2188,11 @@ CREATE TABLE public.registrars (
phone character varying,
email character varying NOT NULL,
billing_email character varying,
country_code character varying NOT NULL,
state character varying,
city character varying,
street character varying,
zip character varying,
address_country_code character varying NOT NULL,
address_state character varying,
address_city character varying,
address_street character varying,
address_zip character varying,
code character varying NOT NULL,
website character varying,
accounting_customer_code character varying NOT NULL,
@ -4945,3 +4945,5 @@ INSERT INTO schema_migrations (version) VALUES ('20190328151838');
INSERT INTO schema_migrations (version) VALUES ('20190415120246');
INSERT INTO schema_migrations (version) VALUES ('20190510090240');