I have a model with some fields, and I'd like to add a new entry in the database of this model, but with changing only one field. Is there a best way to do so, without having to create a new instance and setting one by one each field ?
Case :
public class MyModel extends Model {
public String firstname;
public String lastname;
public String city;
public String country;
public Integer age;
}
And the code I actually have
MyModel user1 = MyModel.findById(1);
MyModel user2 = new MyModel();
// is there a way to do it with clone or user1.id = null ? and then create()?
// Actually, I do that :
user2.firstname = "John";
user2.lastname = user1.lastname;
user2.city = user1.city;
user2.country = user1.country;
user2.age = user1.age;
user2.create();
What I am lookig for would to do something like :
MyModel user1 = MyModel.findById(1);
MyModel user2 = clone user1;
user2.firstname = "John";
user2.create();
or
MyModel user = MyModel.findById(1);
user.id = null;
user.firstname = "John";
user.create();
But I don't know if it's correct to do it like that.