-
Notifications
You must be signed in to change notification settings - Fork 22
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
Update user profile #4488
Open
tspenov
wants to merge
1
commit into
master
Choose a base branch
from
add-new-user-fields
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update user profile #4488
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
priv/repo/migrations/20241126110304_add_user_profile_fields.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
defmodule Sanbase.Repo.Migrations.AddUserProfileFields do | ||
use Ecto.Migration | ||
|
||
def change do | ||
alter table(:users) do | ||
# Text field for user's description/bio | ||
add(:description, :text) | ||
|
||
# Boolean flag for Santiment team membership | ||
add(:is_santiment_team, :boolean, default: false) | ||
|
||
# Social links | ||
add(:twitter_link, :string) | ||
add(:website_link, :string) | ||
end | ||
|
||
create(index(:users, [:is_santiment_team])) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
-- PostgreSQL database dump | ||
-- | ||
|
||
-- Dumped from database version 14.12 (Homebrew) | ||
-- Dumped by pg_dump version 14.12 (Homebrew) | ||
-- Dumped from database version 15.1 (Homebrew) | ||
-- Dumped by pg_dump version 15.1 (Homebrew) | ||
|
||
SET statement_timeout = 0; | ||
SET lock_timeout = 0; | ||
|
@@ -4559,7 +4559,11 @@ CREATE TABLE public.users ( | |
is_superuser boolean DEFAULT false, | ||
twitter_id character varying(255) DEFAULT NULL::character varying, | ||
name character varying(255), | ||
registration_state jsonb DEFAULT '{"state": "init"}'::jsonb | ||
registration_state jsonb DEFAULT '{"state": "init"}'::jsonb, | ||
description text, | ||
is_santiment_team boolean DEFAULT false, | ||
twitter_link character varying(255), | ||
website_link character varying(255) | ||
); | ||
|
||
|
||
|
@@ -7806,6 +7810,13 @@ CREATE UNIQUE INDEX users_email_index ON public.users USING btree (email); | |
CREATE UNIQUE INDEX users_email_token_index ON public.users USING btree (email_token); | ||
|
||
|
||
-- | ||
-- Name: users_is_santiment_team_index; Type: INDEX; Schema: public; Owner: - | ||
-- | ||
|
||
CREATE INDEX users_is_santiment_team_index ON public.users USING btree (is_santiment_team); | ||
|
||
|
||
-- | ||
-- Name: users_stripe_customer_id_index; Type: INDEX; Schema: public; Owner: - | ||
-- | ||
|
@@ -9674,9 +9685,11 @@ INSERT INTO public."schema_migrations" (version) VALUES (20241029080754); | |
INSERT INTO public."schema_migrations" (version) VALUES (20241029082533); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241029151959); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241030141825); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241104061632); | ||
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. not part of this PR? |
||
INSERT INTO public."schema_migrations" (version) VALUES (20241104115340); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241108112754); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241112094924); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241114140339); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241114141110); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241116104556); | ||
INSERT INTO public."schema_migrations" (version) VALUES (20241126110304); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should handle this with roles.