Advertisement
tlbr

Untitled

Aug 4th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. CREATE TABLE supermasters (
  2.   ip                    VARCHAR(64) NOT NULL,
  3.   nameserver            VARCHAR(255) NOT NULL COLLATE NOCASE,
  4.   account               VARCHAR(40) NOT NULL
  5. );
  6. INSERT INTO "supermasters" VALUES('172.16.10.101','ns1.example.org','master');
  7. INSERT INTO "supermasters" VALUES('172.16.10.102','ns2.example.org','master');
  8. INSERT INTO "supermasters" VALUES('172.16.10.103','ns3.example.org','master');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement