20240122174606_add_contributors.sql

1CREATE TABLE contributors (
2    user_id INTEGER REFERENCES users(id),
3    signed_at TIMESTAMP NOT NULL DEFAULT NOW(),
4    PRIMARY KEY (user_id)
5);