Can you tell what sql database this sql snippet is for?
CREATE TABLE attachment (
type text, id text, filename text, size integer, time integer, description text, author text, ipnr text, UNIQUE (type,id,filename) ); INSERT INTO "attachment" VALUES('wiki','CrazyTown','mysql-ds.xml',1146, 1149200303854610,'','master','192.168.1.1');
Answer is (more…)