mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 22:52:04 +03:00
6 lines
147 B
MySQL
6 lines
147 B
MySQL
|
CREATE TABLE contributors (
|
||
|
user_id INTEGER REFERENCES users(id),
|
||
|
signed_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
||
|
PRIMARY KEY (user_id)
|
||
|
);
|