mirror of
https://bitbucket.org/anguist/ntpa
synced 2026-09-24 09:51:55 +00:00
9 lines
268 B
SQL
9 lines
268 B
SQL
USE ntpa;
|
|
|
|
INSERT INTO host (ip, name, orgId) VALUES ('127.0.0.1', 'ntp1.example.net', 900);
|
|
|
|
INSERT INTO peer (ip, name, orgId) VALUES ('127.0.0.2', 'ntp2.example.net', 901);
|
|
INSERT INTO peer (ip, name, orgId) VALUES ('127.0.0.2', 'ntp55.example.net', 250);
|
|
|
|
COMMIT;
|