diff --git a/database/registry.mariadb.sql b/database/registry.mariadb.sql index 868d31d..abcb6aa 100644 --- a/database/registry.mariadb.sql +++ b/database/registry.mariadb.sql @@ -701,6 +701,7 @@ INSERT INTO `registry`.`settings` (`name`, `value`) VALUES ('address', '123 Example Street, Example City'), ('address2', '48000, Ukraine'), ('phone', '+123456789'), +('handle', 'RXX'), ('email', 'contact@example.com'); CREATE USER 'registry'@'localhost' IDENTIFIED BY 'EPPRegistry'; diff --git a/database/registry.postgres.sql b/database/registry.postgres.sql index a22881b..eaa4ee9 100644 --- a/database/registry.postgres.sql +++ b/database/registry.postgres.sql @@ -678,6 +678,7 @@ INSERT INTO registry.settings (name, value) VALUES ('address', '123 Example Street, Example City'), ('address2', '48000, Ukraine'), ('phone', '+123456789'), +('handle', 'RXX'), ('email', 'contact@example.com'); ALTER TABLE registry.domain_price ADD FOREIGN KEY ("tldid") REFERENCES registry.domain_tld ("id");