Eric Bower
·
2026-07-16
1CREATE TABLE IF NOT EXISTS block_signups (
2 id SERIAL PRIMARY KEY,
3 ip inet NOT NULL,
4 reason TEXT not null,
5 created_at timestamp without time zone NOT NULL DEFAULT NOW()
6);
1CREATE TABLE IF NOT EXISTS block_signups (
2 id SERIAL PRIMARY KEY,
3 ip inet NOT NULL,
4 reason TEXT not null,
5 created_at timestamp without time zone NOT NULL DEFAULT NOW()
6);