mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
8 lines
238 B
SQL
8 lines
238 B
SQL
CREATE TABLE IF NOT EXISTS gitsshkeys (
|
|
user_id uuid PRIMARY KEY NOT NULL REFERENCES users (id),
|
|
created_at timestamptz NOT NULL,
|
|
updated_at timestamptz NOT NULL,
|
|
private_key text NOT NULL,
|
|
public_key text NOT NULL
|
|
);
|