Files
ntpa/sql/create_data.sql
T

9 lines
268 B
SQL
Raw Normal View History

2016-03-05 15:25:01 +01:00
USE ntpa;
2016-04-03 22:25:12 +02:00
INSERT INTO host (ip, name, orgId) VALUES ('127.0.0.1', 'ntp1.example.net', 900);
2016-03-12 17:05:05 +01:00
2016-04-03 22:25:12 +02:00
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);
2016-03-12 17:05:05 +01:00
COMMIT;