blob: fd75b87caee97e485685bf86195adc98d7a80524 (
plain) (
blame)
1
2
3
4
5
|
CREATE TABLE IF NOT EXISTS followers (
user_id bigint REFERENCES users(id),
acct character varying(64) NOT NULL UNIQUE,
ts timestamp with time zone DEFAULT now() NOT NULL
);
|