You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am adding Nickname, Name and a Role field to the new user registration Parameter. This new added Parameters I passed show up in my Rails console. As seen below the SQL Insert State shows the following.
I am adding Nickname, Name and a Role field to the new user registration Parameter. This new added Parameters I passed show up in my Rails console. As seen below the SQL Insert State shows the following.
SQL (23.3ms) INSERT INTO "users" ("name", "nickname", "email", "encrypted_password", "role_id", "tokens", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["name", "Neil Hanekom"], ["nickname", "Neil"], ["email", "neilhanekom1@gmail.com"], ["encrypted_password", "$2a$10$z/Jpz8shRfXa9E46O70uk.F6NLNVXcqmSKLkFs6i/e1w39soYOwKS"], ["role_id", 1], ["tokens", "{}"], ["uid", "neilhanekom1@gmail.com"], ["created_at", "2016-07-28 15:31:45.666805"], ["updated_at", "2016-07-28 15:31:45.666805"], ["confirmation_token", "JJzkE_2B6yWPrNhg43HC"], ["confirmation_sent_at", "2016-07-28 15:31:45.667027"]]
However the new Parameters never gets saved. Why would this happen??
The text was updated successfully, but these errors were encountered: