mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 02:44:49 +00:00
1981de4cae
Co-authored-by: Mikayla <mikayla@zed.dev>
5 lines
147 B
SQL
5 lines
147 B
SQL
CREATE TABLE contributors (
|
|
user_id INTEGER REFERENCES users(id),
|
|
signed_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
PRIMARY KEY (user_id)
|
|
);
|