hdx/sql.go

11 lines
159 B
Go

package hdx
const createdb = `
CREATE TABLE IF NOT EXISTS
ips (
id SERIAL PRIMARY KEY,
ip Varchar(64),
time timestamp DEFAULT CURRENT_TIMESTAMP
);
`