-
Notifications
You must be signed in to change notification settings - Fork 158
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
Need user Display names, not email addresses #346
Comments
@csharpfritz if I understood correctly we want to remove email from comments page, user can just enter their display name and make comment? |
That's correct.. we don't want to display users emails by default
Jeff
…On Fri, Nov 9, 2018 at 1:10 PM atifmir ***@***.***> wrote:
@csharpfritz <https://github.com/csharpfritz> if I understood correctly
we want to remove email from comments page, user can just enter their
display name and make comment?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#346 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEy8ea6hpW3K54xpqQNDGBjQoOiDydNks5ute8ygaJpZM4YW7vW>
.
|
ok cool, thanks |
@csharpfritz when removing email from comment via migration, I encountered error; there is foreign key constraint set between email in comments and article ...... seem like this is constraint using SQLite. Applying migration '20181110003331_RemovedEmailFromComment'. |
add migration does not produce the required scaffolding the following manual one I created to drop email column from comments table also does not work , and I get System.NotSupportedException: SQLite does not support this migration operation ('DropColumnOperation'). |
I may be wrong here but I think you're getting this error because SQLite by design doesn't support dropping columns. I think the schema needs to be dropped and rebuilt with a new migration. |
This looks funny in the database and we don't want to expose the email address of users who might not want to share their email address
The text was updated successfully, but these errors were encountered: