db/seeds.rb in iqvoc-4.0.0 vs db/seeds.rb in iqvoc-4.0.1

- old
+ new

@@ -13,25 +13,27 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. if User.where(:email => 'admin@iqvoc').none? - User.create!( - :forename => 'Admin', - :surname => 'Istrator', - :email => 'admin@iqvoc', - :password => 'admin', - :password_confirmation => 'admin', - :active => true, - :role => "administrator") + User.create! do |user| + user.forename = 'Admin' + user.surname = 'Istrator' + user.email = 'admin@iqvoc' + user.password = 'admin' + user.password_confirmation = 'admin' + user.active = true + user.role = "administrator" + end end if User.where(:email => 'demo@iqvoc').none? - User.create!( - :forename => 'Demo', - :surname => 'User', - :email => 'demo@iqvoc', - :password => 'cooluri', - :password_confirmation => 'cooluri', - :active => true, - :role => "reader") + User.create! do |user| + user.forename = 'Demo' + user.surname = 'User' + user.email = 'demo@iqvoc' + user.password = 'cooluri' + user.password_confirmation = 'cooluri' + user.active = true + user.role = "reader" + end end