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