create(*args, &block)
Instance Public methods
Tries to create a new record with the same scoped attributes defined in the
relation. Returns the initialized object if validation fails.
Expects arguments in the same format as Base.create.
Examples
users = User.where(name: 'Oscar')
users.create # #<User id: 3, name: "oscar", ...>
users.create(name: 'fxn')
users.create # #<User id: 4, name: "fxn", ...>
users.create { |user| user.name = 'tenderlove' }
# #<User id: 5