-
Notifications
You must be signed in to change notification settings - Fork 943
feat: Add user scoped git ssh keys #834
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 18 commits
016a6a9
e3c0950
7b2b5ef
3b1145b
91e8435
56c6437
8e6ca2f
214bb41
66ce653
6a10a3c
f755cdb
45dc1fb
ab87f12
c7b81cc
fc4fad5
6c83c54
c265a3c
89bf77c
f310c71
dee1968
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE git_ssh_keys; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS git_ssh_keys ( | ||
f0ssel marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we add an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I've never seen us use this field in V1, feels like it may be premature? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's 100% premature, but it's also difficult to generate unique IDs for each row in a migration. |
||
user_id uuid PRIMARY KEY NOT NULL REFERENCES users (id), | ||
created_at timestamptz NOT NULL, | ||
f0ssel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
updated_at timestamptz NOT NULL, | ||
private_key text NOT NULL, | ||
public_key text NOT NULL | ||
); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.