additional params in controller create action

Try it and see. If it does not then debug it to find why.

Colin

Same select rolls back and then succeeds after render in the case of save didn’t succeed Other than this I’m clueless

User Load (28.2ms) SELECT users.* FROM users WHERE users.id = 2 ORDER BY users.id ASC LIMIT 1

Artist Load (4.6ms) SELECT artists.* FROM artists WHERE artists.id = 14 LIMIT 1

(0.9ms) BEGIN

(3.7ms) ROLLBACK

Rendering user/press_releases/_form.html.erb within layouts/application

Artist Load (2.6ms) SELECT artists.* FROM artists WHERE artists.id = 14 LIMIT 1

> I'm trying to assign additional parameters to create to satisfy > validations > in the model like so > address="params[:address0] + params[:address1] > @user.address=address > if @user.save > ... > In this example there's address0 and address1 in the form but not the > schema > which has only :address > Should this work?

Try it and see. If it does not then debug it to find why.

Colin

Same select rolls back and then succeeds after render in the case of save didn't succeed Other than this I'm clueless

  User Load (28.2ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 2 ORDER BY `users`.`id` ASC LIMIT 1   Artist Load (4.6ms) SELECT `artists`.* FROM `artists` WHERE `artists`.`id` = 14 LIMIT 1    (0.9ms) BEGIN    (3.7ms) ROLLBACK   Rendering user/press_releases/_form.html.erb within layouts/application   Artist Load (2.6ms) SELECT `artists`.* FROM `artists` WHERE `artists`.`id` = 14 LIMIT 1

Did your debugging show that @user.address is setup correctly?

Colin