- Notifications
You must be signed in to change notification settings - Fork924
feat: exposeowner_name
incoder_workspace
resource#11639
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
6653b24
2b239ab
7fd0577
2defb89
06208e5
e0d8551
e3565e6
e6c23aa
7df71de
afced2a
8e6f929
97dfbcf
4d8934d
15367f0
891705f
f3c0c42
d116566
2bc609e
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE users DROP COLUMN name; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE users ADD COLUMN name text NOT NULL DEFAULT ''; | ||
johnstcn marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
COMMENT ON COLUMN users.name IS 'Name of the Coder user'; | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -78,7 +78,8 @@ SET | ||
email = $2, | ||
username = $3, | ||
avatar_url = $4, | ||
updated_at = $5, | ||
name = $6 | ||
WHERE | ||
id = $1 | ||
RETURNING *; | ||
Uh oh!
There was an error while loading.Please reload this page.